Historical SERPs (Legacy)
Note that the structure of DataForSEO Labs API requests and responses was updated on 2022-03-19. However, we will continue supporting the legacy version documented here. You can review the documentation of the new version by this link.
This endpoint will provide you with Google SERPs collected within the specified time frame. You will also receive a complete overview of featured snippets and other extra elements that were present within the specified dates. The data will allow you to analyze the dynamics of keyword rankings over time for the specified keyword and location.
Note that historical data is available starting from 2021-08-01
.
Instead of ‘login’ and ‘password’ use your credentials from https://app.dataforseo.com/api-access
# Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
login="login"
password="password"
cred="$(printf ${login}:${password} | base64)"
curl --location --request POST "https://api.dataforseo.com/v3/dataforseo_labs/historical_serps/live" \
--header "Authorization: Basic ${cred}" \
--header "Content-Type: application/json" \
--data-raw '[
{
"keyword": "albert einstein",
"language_code": "en",
"location_code": 2840,
"date_from": "2021-08-01",
"date_to": "2021-10-01"
}
]'
<?php
// You can download this file from here https://cdn.dataforseo.com/v3/examples/php/php_RestClient.zip
require('RestClient.php');
$api_url = 'https://api.dataforseo.com/';
// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
$client = new RestClient($api_url, null, 'login', 'password');
$post_array = array();
// simple way to set a task
$post_array[] = array(
"keyword" => "albert einstein",
"location_code" => 2840,
"language_code" => "en",
"date_from" => "2021-08-01",
"date_to" => "2021-10-01"
);
try {
// POST /v3/dataforseo_labs/historical_serps/live
$result = $client->post('/v3/dataforseo_labs/historical_serps/live', $post_array);
print_r($result);
// do something with post result
} catch (RestClientException $e) {
echo "n";
print "HTTP code: {$e->getHttpCode()}n";
print "Error code: {$e->getCode()}n";
print "Message: {$e->getMessage()}n";
print $e->getTraceAsString();
echo "n";
}
$client = null;
?>
from client import RestClient
# You can download this file from here https://cdn.dataforseo.com/v3/examples/python/python_Client.zip
client = RestClient("login", "password")
post_data = dict()
# simple way to set a task
post_data[len(post_data)] = dict(
keyword="albert einstein",
location_name="United States",
language_name="English",
date_from="2021-08-01",
date_to="2021-10-01"
)
# POST /v3/dataforseo_labs/historical_serps/live
response = client.post("/v3/dataforseo_labs/historical_serps/live", post_data)
# you can find the full list of the response codes here https://docs.dataforseo.com/v3/appendix/errors
if response["status_code"] == 20000:
print(response)
# do something with result
else:
print("error. Code: %d Message: %s" % (response["status_code"], response["status_message"]))
const post_array = [];
post_array.push({
"keyword": "albert einstein",
"location_code": 2840,
"language_code": "en",
"date_from": "2021-08-01",
"date_to": "2021-10-01"
});
const axios = require('axios');
axios({
method: 'post',
url: 'https://api.dataforseo.com/v3/dataforseo_labs/historical_serps/live',
auth: {
username: 'login',
password: 'password'
},
data: post_array,
headers: {
'content-type': 'application/json'
}
}).then(function (response) {
var result = response['data']['tasks'];
// Result data
console.log(result);
}).catch(function (error) {
console.log(error);
});
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
namespace DataForSeoDemos
{
public static partial class Demos
{
public static async Task dataforseo_labs_historical_serps_live()
{
var httpClient = new HttpClient
{
BaseAddress = new Uri("https://api.dataforseo.com/"),
// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
DefaultRequestHeaders = { Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.ASCII.GetBytes("login:password"))) }
};
var postData = new List<object>();
postData.Add(new
{
keyword = "albert einstein",
location_name = "United States",
language_name = "English",
date_from = "2021-08-01",
date_to = "2021-10-01"
});
// POST /v3/dataforseo_labs/historical_serps/live
// the full list of possible parameters is available in documentation
var taskPostResponse = await httpClient.PostAsync("/v3/dataforseo_labs/historical_serps/live", new StringContent(JsonConvert.SerializeObject(postData)));
var result = JsonConvert.DeserializeObject(await taskPostResponse.Content.ReadAsStringAsync());
// you can find the full list of the response codes here https://docs.dataforseo.com/v3/appendix/errors
if (result.status_code == 20000)
{
// do something with result
Console.WriteLine(result);
}
else
Console.WriteLine($"error. Code: {result.status_code} Message: {result.status_message}");
}
}
}
The above command returns JSON structured like this:
"version": "0.1.20220216" ,
"id": "02171444-2806-0380-0000-3d1691a4ad1b" ,
"api": "dataforseo_labs" ,
"function": "historical_serps" ,
"keyword": "albert einstein" ,
"language_name": "English" ,
"date_from": "2021-08-01" ,
"keyword": "albert einstein" ,
"keyword": "albert einstein" ,
"se_domain": "google.com" ,
"check_url": "https://www.google.com/search?q=albert%20einstein&num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc" ,
"datetime": "2021-08-01 08:05:11 +00:00" ,
"se_results_count": 85600000 ,
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[7]/div[1]" ,
"title": "Star Wars original trilogy/Cast" ,
"type": "carousel_element" ,
"title": "Carrie Fisher" ,
"sub_title": "Princess Leia"
"type": "carousel_element" ,
"sub_title": "Luke Skywalker"
"type": "carousel_element" ,
"title": "Anthony Daniels" ,
"type": "multi_carousel" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[5]/div[1]/div[3]/div[1]/div[1]/div[1]/sticky-header[1]/div[2]/div[1]/g-flippy-carousel[1]/div[1]/div[1]/ol[1]/li[1]/span[1]/div[1]/div[1]/div[1]/div[3]/div[8]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]" ,
"type": "multi_carousel_element" ,
"title": "Types of molds" ,
"multi_carousel_snippets": [
"type": "multi_carousel_snippet" ,
"title": "Aspergillus niger"
"type": "multi_carousel_snippet" ,
"title": "Penicillium chrysogen..."
"type": "multi_carousel_snippet" ,
"title": "Black bread mold"
"type": "multi_carousel_snippet" ,
"title": "Aspergillus oryzae"
"type": "multi_carousel_snippet" ,
"title": "Aspergillus flavus"
"type": "multi_carousel_snippet" ,
"title": "Penicillium digitatum"
"type": "multi_carousel_snippet" ,
"title": "Alternaria alternata"
"type": "multi_carousel_snippet" ,
"title": "Cladospor... cladospori..."
"type": "multi_carousel_element" ,
"title": "Fungi species" ,
"multi_carousel_snippets": [
"type": "multi_carousel_snippet" ,
"title": "Claviceps purpurea"
"type": "multi_carousel_snippet" ,
"title": "Botrytis cinerea"
"type": "multi_carousel_snippet" ,
"type": "multi_carousel_snippet" ,
"title": "Splitgill mushroom"
"type": "multi_carousel_snippet" ,
"title": "Beauveria bassiana"
"type": "multi_carousel_snippet" ,
"title": "Gibberella zeae"
"type": "multi_carousel_snippet" ,
"title": "Magnapor... grisea"
"type": "multi_carousel_snippet" ,
"title": "Neurospora crassa"
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/g-section-with-header[1]/div[2]" ,
"type": "top_stories_element" ,
"domain": "news.sky.com" ,
"title": "UK takes charge of coalition Gulf mission to protect ships from Iran" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://news.sky.com/story/uk-takes-charge-of-coalition-gulf-mission-to-protect-ships-from-iran-11921404"
"type": "top_stories_element" ,
"source": "The Jerusalem Post" ,
"domain": "www.jpost.com" ,
"title": "Iranian factory makes Israeli and American flags to burn" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://www.jpost.com/International/Iranian-factory-makes-Israeli-and-American-flags-to-burn-615902"
"type": "top_stories_element" ,
"domain": "www.reuters.com" ,
"title": "Iranian factory makes U.S. and Israeli flags to burn" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://www.reuters.com/article/us-iran-flags/iranian-factory-makes-us-and-israeli-flags-to-burn-idUSKBN1ZT065"
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]" ,
"Which is the best iPhone?" ,
"Best iPhone: which one should you buy today" ,
"iPhone 11. The best Apple iPhone bang for your buck. ..." ,
"iPhone 11 Pro Max. Big phone, best phone, top price. ..." ,
"iPhone 8. The newest 4.7-inch iPhone is a phone lots of people still want. ..." ,
"iPhone 8 Plus. A more affordable, big screen iPhone. ..." ,
"https://www.techradar.com › news › best-iphone" ,
"Best iPhone 2019: which Apple phone is the best? | TechRadar" ,
"Which is the best iPhone?" ,
"What is the function of iPhone?" ,
"is a smartphone made by Apple that combines a computer, iPod, digital camera and cellular phone into one device with a touchscreen interface. The" ,
"runs the iOS operating system (OS), and as of 2017, there were 2.2 million apps available for it through the Apple App Store, according to Statista." ,
"https://searchmobilecomputing.techtarget.com › definition › iPhone"
"title": "More items..." ,
"url": "https://www.techradar.com/news/best-iphone"
"title": "Best iPhone 2019: which Apple phone is the best? | TechRadarhttps://www.techradar.com › news › best-iphone" ,
"url": "https://www.techradar.com/news/best-iphone"
"title": "Which is the best iPhone?" ,
"url": "https://www.google.com.ua/search?num=100&hl=en&gl=UA&q=Which+is+the+best+iPhone%3F&sa=X&ved=2ahUKEwie3MvG1tXlAhWIM48KHUHqBvoQzmd6BAhfEA0"
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]" ,
"type": "math_solver_element" ,
"title": "Quadratic formula" ,
"type": "math_solver_expanded_element" ,
"title": "Combine like terms" ,
"type": "math_solver_expanded_element" ,
"title": "Move terms to the left side" ,
"type": "math_solver_expanded_element" ,
"title": "Common factor" ,
"type": "math_solver_expanded_element" ,
"title": "Divide both sides of the equation by the same term" ,
"type": "math_solver_expanded_element" ,
"title": "Use the quadratic formula" ,
"x=((-b±sqrt(b^2-4ac))/(2a))" ,
"Once in standard form, identify a, b, and c from the original equation and plug them into the quadratic formula." ,
"x=((-0±sqrt(0^2-4×1(-25)))/(2×1))"
"type": "math_solver_expanded_element" ,
"type": "math_solver_expanded_element" ,
"title": "Separate the equations" ,
"To solve for the unknown variable, separate into two equations: one with a plus and the other with a minus." ,
"type": "math_solver_expanded_element" ,
"Rearrange and isolate the variable to find each solution" ,
"type": "math_solver_element" ,
"type": "math_solver_expanded_element" ,
"title": "Combine like terms" ,
"type": "math_solver_expanded_element" ,
"title": "Move terms to the left side" ,
"type": "math_solver_expanded_element" ,
"title": "Common factor" ,
"type": "math_solver_expanded_element" ,
"title": "Use the sum-product pattern" ,
"type": "math_solver_expanded_element" ,
"title": "Common factor from the two pairs" ,
"2((x^2+5x)+(-5x-25))=0" ,
"type": "math_solver_expanded_element" ,
"title": "Rewrite in factored form" ,
"type": "math_solver_expanded_element" ,
"title": "Create separate equations" ,
"type": "math_solver_expanded_element" ,
"Rearrange and isolate the variable to find each solution" ,
"title": "Tiger Algebra" ,
"url": "https://www.tiger-algebra.com/en/solvetext/3x%5E2-x%5E2%3D50/?origin=googlemath"
"url": "https://www.symbolab.com/solver?or=gms&query=3x%5E2-x%5E2%3D50"
"url": "https://www.mathway.com/?asciimath=3x%5E2-x%5E2%3D50"
"url": "https://mathforyou.net/en/online/equation/arbitrary/?e0=3x%5E2-x%5E2%3D50&v0=x&o0=1&from=google"
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[7]/div[1]/g-section-with-header[1]/div[2]" ,
"title": "Google Pixel 4 XL vs. iPhone 11 Pro Max Speed Test" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://www.youtube.com/watch?v=Osp8K7W3qDY"
"title": "iPhone XR vs iPhone 11 - Which Should You Choose?" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://www.youtube.com/watch?v=BZ5fdNNHVu0"
"title": "Why iPhone 11 Is Apple's Least Innovative iPhone Yet" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://www.youtube.com/watch?v=7YyTCa6IMKA"
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]" ,
"domain": "dataforseo.com" ,
"title": "SEO software API. API for agencies. Best SEO data API provider." ,
"url": "https://dataforseo.com/" ,
"breadcrumb": "https://dataforseo.com" ,
"is_featured_snippet": false ,
"description": "DataForSEO – the best data provider for SEO-software companies and agencies ... We make our project live because we believe that we're helping companies to fill ..." ,
"extended_snippet": null ,
"url": "https://dataforseo.com/apis"
"title": "DataForSEO Labs API" ,
"url": "https://dataforseo.com/apis/dataforseo-labs-api"
"url": "https://dataforseo.com/pricing"
"url": "https://my.dataforseo.com/login"
"url": "https://dataforseo.com/apis/serp-api"
"type": "about_this_result_element" ,
"url": "https://dataforseo.com/" ,
"location": "the United States" ,
"main_domain": "dataforseo.com" ,
"etv": 15.199999809265137 ,
"impressions_etv": 24.441600799560547 ,
"estimated_paid_traffic_cost": 119.4809799194336 ,
"previous_rank_absolute": 1 ,
"type": "people_also_search" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]" ,
"title": "List of iPhonesView 3+ moreView 3+" ,
"type": "related_searches" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]/div[3]/g-section-with-header[1]/div[2]" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]" ,
"title": "Nevada United States" ,
"type": "featured_snippet" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]" ,
"domain": "www.rome.net" ,
"title": "Rome Metro - Lines, hours, fares and Rome metro maps" ,
"description": "Most important metro stationsCipro - Musei Vaticani: The closest stop to the Vatican Museums and to the Sistine Chapel.Ottaviano - San Pietro: This station is a few minutes' walk from St. Peter's Square and St. Peter's Basilica.Spagna: Very convenient for visiting Piazza di Spagna and Villa Borghese.More items..." ,
"url": "https://www.rome.net/metro" ,
"Alexa top 100 global websites (As of April 3, 2017)"
"main_domain": "dataforseo.com" ,
"etv": 15.199999809265137 ,
"impressions_etv": 24.441600799560547 ,
"estimated_paid_traffic_cost": 119.4809799194336 ,
"previous_rank_absolute": 1 ,
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]" ,
"title": "The Signal Pub" ,
"description": "0.1 mi · 7 Devonshire Rd \n\nDine-in · Takeaway \n" ,
"main_domain": "dataforseo.com" ,
"etv": 15.199999809265137 ,
"impressions_etv": 24.441600799560547 ,
"estimated_paid_traffic_cost": 119.4809799194336 ,
"previous_rank_absolute": 1 ,
"xpath": "/html[1]/body[1]/div[8]/div[2]/div[9]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]" ,
"title": "Places to Stay | New York, NY" ,
"date_from": "2021-03-13" ,
"type": "hotels_pack_element" ,
"displayed_price": "$198"
"title": "DoubleTree by Hilton Hotel New York Times Square West" ,
"description": "13% off \n" ,
"hotel_identifier": "CgoIuuav9KbOg9kvEAE" ,
"domain": "www.google.com" ,
"url": "https://www.google.com/travel/hotels/New%20York/entity/CgoIuuav9KbOg9kvEAE?g2lb=2502548,2503781,4258168,4270442,4306835,4317915,4328159,4371334,4401769,4419364,4429192,4463666,4464737,4472151,4482194,4482438,4486153,4491350,4495816,4500614,4501241,4509286,4511370,4270859,4284970,4291517&hl=en-US&gl=us&ap=aAE&grf=ErAMCiwIDhIoEiZyJCoiCgcI5Q8QAxgNEgcI5Q8QAxgOIAAwHkDKAkoHCOUPEAMYAhILCCkoAToF0gICCAESCggNKAE6BGoCCAESCggHKAE6BDoCIAESCggCKAE6BBICCAESDAgKEAIoAToEWgIIBhIMCAoQAigBOgRaAggJEgwIChACKAE6BFoCCAgSDAgKEAIoAToEWgIIChIMCAoQAigBOgRaAggCEgwIChACKAE6BFoCCAESDAgKEAIoAToEWgIIAxIMCAoQAigBOgRaAggHEgoIBCgBOgQiAhABEgsIKCgBOgXKAgIIARILCBMoAjoFmgECCAESBAgfKAMaQggKEgYKBFoCCAYSBgoEWgIICRIGCgRaAggIEgYKBFoCCAoSBgoEWgIIAhIGCgRaAggBEgYKBFoCCAMSBgoEWgIIBxoCCAIaAggNGgIIBBoLCBMSBwoFmgECCAEaAggOGkIIBxIOCgw6CgoDCJYBGgNVU0QSDgoMOgoKAwj6ARoDVVNEEg4KDDoKCgMIrAIaA1VTRBIOCgw6CgoDCN4CGgNVU0QaiQkIHxIJCgWCAgIIISACEgsKB4ICBAgIGCEgARILCgeCAgQIVBghIAESCgoGggIDCPABIAESCQoFggICCBIgEhIMCgiCAgUImwEYEiAIEgsKB4ICBAhoGBIgBhILCgeCAgQIaRgSIAESCQoFggICCBQgHBILCgeCAgQIcBgUIAISCwoHggIECB0YFCABEgsKB4ICBAgbGBQgChILCgeCAgQIMBgUIAISCwoHggIECFIYFCAEEgsKB4ICBAhOGBQgAhILCgeCAgQIFxgUIAQSCgoGggIDCJwBIAESCgoGggIDCKECIAISCQoFggICCBwgPhILCgeCAgQIchgcIAESCwoHggIECAcYHCACEgsKB4ICBAhRGBwgCBILCgeCAgQIWBgcIAISCwoHggIECHMYHCAPEgsKB4ICBAhHGBwgDhILCgeCAgQIXxgcIAMSCwoHggIECDYYHCAHEgsKB4ICBAgkGBwgARILCgeCAgQITRgcIAMSDAoIggIFCJ0CGBwgARILCgeCAgQIKRgcIAESCQoFggICCCUgEhILCgeCAgQIdRglIAESDAoIggIFCKACGCUgAhILCgeCAgQIdxglIAISCwoHggIECHgYJSACEgsKB4ICBAh5GCUgBhILCgeCAgQIehglIAESCwoHggIECHYYJSABEgkKBYICAghkIAESCQoFggICCBEgLRILCgeCAgQIKhgRIAQSDAoIggIFCJoCGBEgBBILCgeCAgQIQBgRIAsSCwoHggIECDgYESAQEgsKB4ICBAhXGBEgBBILCgeCAgQIAhgRIAISCwoHggIECH8YESACEgsKB4ICBAgrGBEgARIJCgWCAgIILiBtEgwKCIICBQiAARguIAISCwoHggIECDwYLiAFEgsKB4ICBAg7GC4gAxILCgeCAgQIVhguIBESDAoIggIFCIACGC4gAhILCgeCAgQIOhguIBMSDAoIggIFCIcBGC4gBhILCgeCAgQIGhguIAESCwoHggIECEgYLiABEgsKB4ICBAg9GC4gBxIMCgiCAgUIgQEYLiAEEgwKCIICBQiDARguIAMSCwoHggIECEsYLiAMEgsKB4ICBAgDGC4gARILCgeCAgQIDBguIAUSCwoHggIECFMYLiAGEgsKB4ICBAgoGC4gAxIMCgiCAgUIiQEYLiADEgsKB4ICBAgnGC4gAxIKCgaCAgMIrgEgARINCgmCAgYIswEYrgEgARIKCgaCAgMIqQEgARINCgmCAgYIqwEYqQEgARIKCgaCAgMI4QIgARIMCgiCAgUIYxjhAiABEgkKBYICAghQIAYSCwoHggIECBkYUCABEgsKB4ICBAhMGFAgBRIJCgWCAgIIBCABEgoKBoICAwijASACEg0KCYICBgikARijASACEgkKBYICAgg1ICASCwoHggIECBMYNSAJEgsKB4ICBAgLGDUgCRILCgeCAgQIMRg1IAESCwoHggIECDIYNSAEEgsKB4ICBAhdGDUgAxIMCgiCAgUInAIYNSABEgsKB4ICBAgQGDUgAhILCgeCAgQIRBg1IAMiAiAB&q=place+to+stay+in+new+york&rp=ELrmr_SmzoPZLxDPoIis7IK7xScQqaXNmf6b0YyyARC6we3X-MPQ_vgBOAFAAEgCogEMTmV3IFlvcmssIE5ZwAEDyAEA&ictx=1" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/g-section-with-header[1]" ,
"type": "twitter_element" ,
"tweet": "pic.twitter.com/z0I7wBs…" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://twitter.com/realDonaldTrump/status/1192640102943674368"
"type": "twitter_element" ,
"tweet": "STATEMENT FROM PRESIDENT DONALD J. TRUMP pic.twitter.com/EktztHf…" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://twitter.com/realDonaldTrump/status/1192594646691729408"
"type": "twitter_element" ,
"tweet": "Stock Market up big today. A New Record. Enjoy!" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"url": "https://twitter.com/realDonaldTrump/status/1192467617140924417"
"type": "knowledge_graph" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]" ,
"sub_title": "American rapper" ,
"description": "Marshall Bruce Mathers III, known professionally as Eminem, is an American rapper, songwriter, and record producer. Wikipedia" ,
"url": "http://www.eminem.com/" ,
"image_url": "https://lh5.googleusercontent.com/p/AF1QipOXJ3a4wLbI0j2Z0UbABhMqxH2-19RwzXty0obc=w120-h160-k-no" ,
"logo_url": "https://lh6.googleusercontent.com/-faPtDtkXReo/AAAAAAAAAAI/AAAAAAAAAAA/zSDtky4Hnkg/s44-p-k-no-ns-nd/photo.jpg" ,
"type": "knowledge_graph_images_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]" ,
"url": "https://www.google.com/search?num=100&source=univ&tbm=isch&q=eminem&gl=US&hl=en&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQiR56BAgjEBI" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/a[1]"
"type": "knowledge_graph_images_element" ,
"url": "http://google.com/search?tbm=isch&q=Marshall+Mathers" ,
"alt": "Image result for eminem" ,
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:0" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]"
"type": "knowledge_graph_images_element" ,
"url": "https://www.biography.com/musician/eminem" ,
"domain": "www.biography.com" ,
"alt": "Image result for eminem" ,
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:1" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]"
"type": "knowledge_graph_description_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]" ,
"text": "Marshall Bruce Mathers III, known professionally as Eminem, is an American rapper, songwriter, and record producer. Wikipedia" ,
"url": "https://en.wikipedia.org/wiki/Eminem" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/span[2]/a[1]"
"type": "knowledge_graph_row_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]" ,
"data_attrid": "kc:/people/person:born" ,
"text": "October 17, 1972 (age 48 years), Saint Joseph, MO" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+born&stick=H4sIAAAAAAAAAOPgE-LSz9U3MCwrTi_K0xLLTrbSL0jNL8hJBVJFxfl5Vkn5RXmLWLlTczPzUnMVQDwAjiIGizQAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQ6BMoADCEAXoECBUQAg" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/span[1]/a[1]"
"title": "Saint Joseph, MO" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Saint+Joseph,+Missouri&stick=H4sIAAAAAAAAAOPgE-LSz9U3MCwrTi_KU-IEs41NC8y1xLKTrfQLUvMLclKBVFFxfp5VUn5R3iJWseDEzLwSBa_84tSCDB0F38zi4vzSoswdrIwAB8H08E0AAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQmxMoATCEAXoECBUQAw" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/span[2]/a[1]"
"type": "knowledge_graph_list_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]" ,
"data_attrid": "kc:/music/artist:songs" ,
"title": "View 25+ more" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+songs&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU0Jia4llJ1vp55YWZybrJxaVZBaXWBXn56UXL2LlSc3NzEvNVQBzd7AyAgDxd6QwRAAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQMTCJAXoECA8QDQ" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[3]/a[1]"
"type": "knowledge_graph_list_element" ,
"title": "Lose Yourself" ,
"subtitle": "8 Mile: Music from and Inspired by the Motion Picture · 2002" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+lose+yourself&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-LRT9c3LDYwLSxMjy_SEvQtLc5MdiwqySwuCckPzs9LX8QqkpqbmZeaq5CTX5yqUJlfWlScmpMGAGgNlUFGAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQri4wiQF6BAgPEAQ" ,
"domain": "www.google.com" ,
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:20" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]"
"type": "knowledge_graph_list_element" ,
"title": "Love the Way You Lie" ,
"subtitle": "Recovery · 2010" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+love+the+way+you+lie&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-LRT9c3LDYwLSoyqTDUEvQtLc5MdiwqySwuCckPzs9LX8QqnZqbmZeaq5CTX5aqUJKRqlCeWKlQmV-qkJOZCgDBoMK9TQAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQri4wiQF6BAgPEAc" ,
"domain": "www.google.com" ,
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:21" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]"
"type": "knowledge_graph_carousel_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]" ,
"title": "People also search for" ,
"data_attrid": "kc:/people/person:sideways" ,
"title": "View 15+ more" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Eminem&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU0Jia0llJ1vpF6TmF-SkAqmi4vw8q-LMlNTyxMriRaxsrrmZeam5O1gZATU92aRCAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQzTooATCLAXoECBgQAg" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/a[1]"
"type": "knowledge_graph_carousel_element" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Hailie+Jade&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-IEsZNSMoxTtPgCUouK8_OCM1NSyxMrixexcnskZuZkpip4Jaak7mBlBABrZrx2OgAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQxA0wiwF6BAgYEAU" ,
"domain": "www.google.com" ,
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:28" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]"
"type": "knowledge_graph_carousel_element" ,
"title": "Kimberly Anne Scott" ,
"subtitle": "Former spouse" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Kimberly+Anne+Scott&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KUwKzjZOL84zztPgCUouK8_OCM1NSyxMrixexCntn5ialFuVUKjjm5aUqBCfnl5TsYGUEADMZFYNDAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQxA0wiwF6BAgYEAc" ,
"domain": "www.google.com" ,
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:29" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]"
"type": "knowledge_graph_part_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]" ,
"title": "Questions & answers" ,
"data_attrid": "kc:/local:place qa" ,
"text": "Questions & answers Ask a question See all questions (7)" ,
"title": "Ask a question" ,
"url": "https://www.google.com/#" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]/div[2]/span[1]/a[1]"
"title": "See all questions (7)" ,
"url": "https://www.google.com/#" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]/div[2]/a[1]"
"type": "knowledge_graph_expanded_item" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[9]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[8]/div[1]/div[1]" ,
"data_attrid": "okra/answer_panel/Size" ,
"type": "knowledge_graph_expanded_element" ,
"featured_title": "They say there are only three things in this world you can count on—death, taxes, and that social media sizes that you've committed to memory will change out of the blue....Instagram Image Sizes 2020." ,
"url": "https://www.picmonkey.com/blog/size-matters-instagram-photo-sizes-made-easy" ,
"domain": "www.picmonkey.com" ,
"title": "Instagram Photo Sizes 2021 | Create Instagram Images | PicMonkey" ,
"table_element": "table_element" ,
"Social media image type" ,
"1080 x 1080 (1:1 ratio)"
"Instagram Profile Photo" ,
"type": "knowledge_graph_shopping_item" ,
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[3]/div[1]/div[2]/div[2]/sticky-header[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]" ,
"type": "knowledge_graph_shopping_element" ,
"url": "https://www.apple.com/us/xc/product/MGHH3?purchaseOption=cp&cid=aos-us-seo-pla" ,
"domain": "www.apple.com" ,
"displayed_price": "$979.00"
"snippet": "256 GB storage · Unlocked · Black" ,
"type": "knowledge_graph_shopping_element" ,
"url": "https://www.t-mobile.com/cell-phone/apple-iphone-12?sku=194252429563" ,
"domain": "www.t-mobile.com" ,
"displayed_price": "$0.00 now"
"snippet": "64 GB storage · T-Mobile · Purple" ,
"type": "knowledge_graph_shopping_element" ,
"url": "https://www.att.com/buy/phones/apple-iphone-12-128gb-white.html" ,
"displayed_price": "$0.00 now"
"snippet": "128 GB storage · AT&T · White" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/ol[1]/li[1]" ,
"title": "Cheap Flights to Kharkov | Book Now & Save on CheapOair®" ,
"domain": "www.cheapoair.com" ,
"description": "Our Low Cost Flights Deals to Kharkov. Book Your Flights Today! Award Winning Service. Last Minute Travel. We Make it Easy to Travel. Enjoy Huge Discounts. Book 600+ Airlines." ,
"breadcrumb": "www.cheapoair.com/Flights/to_Kharkov" ,
"url": "https://www.cheapoair.com/flights/booknow/cheap-flight-tickets" ,
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABAAGgJjZQ"
"description_rows": null ,
"type": "ad_link_element" ,
"title": "Flights $99 and Under" ,
"url": "https://www.cheapoair.com/flights/booknow/flights-under-99" ,
"description": "Grab Flight Deals Under $99 Today!Book Tickets Now on CheapOair®." ,
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABABGgJjZQ"
"type": "ad_link_element" ,
"title": "Top 25 Flight Deals" ,
"url": "https://www.cheapoair.com/flights/booknow/top-deals" ,
"description": "Get Our Best Deal on Top Cities.100% Safe Shopping Guarantee!" ,
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABACGgJjZQ"
"main_domain": "dataforseo.com" ,
"etv": 15.199999809265137 ,
"impressions_etv": 24.441600799560547 ,
"estimated_paid_traffic_cost": 119.4809799194336 ,
"previous_rank_absolute": 1 ,
"type": "google_reviews" ,
"place_id": "ChIJBVXQG_CgJ0ERON-jp0YRZE0" ,
"feature": "0x4127a0f01bd05505:0x4d641146a7a3df38" ,
"cid": "16568475418893539593"
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[10]" ,
"posts_id": "lph_fdxNX-CFCsHVkwWz962wCw154" ,
"feature": "0x88db403dfe9c2975:0xb5297332e0c33afb" ,
"cid": "13054091657266543355"
"type": "google_flights" ,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]" ,
"title": "Flights from Kharkiv (HRK) to Lviv (LWO)" ,
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhopEgoyMDE5LTExLTE0ag0IAhIJL20vMDgyc3k5cgwIAhIIL20vMGQ3X24aKRIKMjAxOS0xMS0xN2oMCAISCC9tLzBkN19ucg0IAhIJL20vMDgyc3k5ekBDaWRIZVRZNWQwSkhMUzB0TFMwdExTMHRZMlZ4YmpJMlFVRkJRVUZHTTBaUVRVVkVkMGhLUVVFU0EyNVFVUT09&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8QuRUwAHoECGIQAw" ,
"type": "google_flights_element" ,
"description": "SkyUp 1h 50m Non-stop from UAH 1,944 " ,
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJQUWoNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAlBRagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoADAAegQIYhAQ"
"type": "google_flights_element" ,
"description": "LOT 7h 5m+ Connecting from UAH 52,388 " ,
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJMT2oNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAkxPagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoATAAegQIYhAR"
"type": "google_flights_element" ,
"description": "Ukraine International 3h 20m+ Connecting check price " ,
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJQU2oNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAlBTagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoAjAAegQIYhAS"
"type": "people_also_ask" ,
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]" ,
"type": "people_also_ask_element" ,
"title": "What is the best texting app?" ,
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]/div[1]/div[1]/div[1]" ,
"type": "people_also_ask_expanded_element" ,
"url": "https://www.xda-developers.com/best-text-messaging-apps-android/" ,
"domain": "www.xda-developers.com" ,
"title": "Best Text Messaging Apps for Android - XDA Developers" ,
"description": "Best Text Messaging Apps for AndroidAndroid Messages (Top Choice) The good news for a lot of people is the best text messaging app is probably already on your phone. ... Chomp SMS. Chomp SMS is an old classic and it's still one of the best messaging apps. ... EvolveSMS. ... Facebook Messenger. ... Handcent Next SMS. ... Mood Messenger. ... Pulse SMS. ... QKSMS.More items..." ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"type": "people_also_ask_element" ,
"title": "What is the best free texting app?" ,
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]/div[1]/div[1]/div[2]" ,
"type": "people_also_ask_expanded_element" ,
"url": "https://www.androidauthority.com/best-free-text-apps-android-937389/" ,
"domain": "www.androidauthority.com" ,
"title": "5 free text apps for Android that send real SMS messages! (Updated ..." ,
"description": "Google Voice is an excellent free texting app and easily one of the most popular. It lets you send free SMS messages and make free phone calls in the U.S. or Canada.2 May 2019" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[66]/div[1]/div[2]" ,
"title": "Images for google pixel 5" ,
"url": "https://www.google.com/search?num=100&safe=strict&source=univ&tbm=isch&q=google+pixel+5&gl=US&hl=en&sa=X&ved=2ahUKEwjj38uSm7PxAhUzhuYKHeUsDncQjJkEegQIMxAC" ,
"type": "images_element" ,
"alt": "Image result for google pixel 5" ,
"url": "https://www.amazon.com/Google-Pixel-Resistant-Smartphone-Ultrawide/dp/B08H8X23ZB" ,
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSG-CP4bWXtOqg-HgdQ8O6eDq93H49ThLZXfz8e7BLlVw&s"
"type": "images_element" ,
"alt": "Image result for google pixel 5" ,
"url": "https://store.google.com/product/pixel_5" ,
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQXHy0fH_sPtwzA6HBYjCYVa9qjmNdPyikdHcpQJ-2Y&s"
"type": "images_element" ,
"alt": "Image result for google pixel 5" ,
"url": "https://www.bestbuy.com/site/google-pixel-5-5g-128gb-unlocked-just-black/6431992.p?skuId=6431992" ,
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcROhijfKW7EITaKaSa3vJiagrvp4v8e6W2YgvtedZGU&s"
"type": "images_element" ,
"alt": "Image result for google pixel 5" ,
"url": "https://www.gsmarena.com/google_pixel_5-10386.php" ,
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRjnRvSpLnfyKzxMH5gQzMAVRYwRvbyqWFreOz7TU_r&s"
"related_image_searches": [
"type": "related_image_searches_element" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:desktop:GhRwno6xyAk%3D&usg=AI4_-kRZZbrJkRKpY-dI4XnJZmHIj9tomg&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAR6BAgTEBo" ,
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:23"
"type": "related_image_searches_element" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:nature:QFotJTE5uJk%3D&usg=AI4_-kT9GMRWruVX-G44OLrYUJeJSSYP-g&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAV6BAgTEB4" ,
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:24"
"type": "related_image_searches_element" ,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:lock+screen:D2QY-VvDcCE%3D&usg=AI4_-kTJhC34RX6VCIJGcKVM1xOgzbG04Q&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAd6BAgTECY" ,
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:26"
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]" ,
"title": "See buy treadmill" ,
"type": "shopping_element" ,
"title": "NordicTrack Commercial 1750 Treadmill" ,
"displayed_price": "$1,799.00"
"url": "https://www.nordictrack.com/treadmills/commercial-1750-treadmill"
"type": "shopping_element" ,
"title": "7.0AT Studio Treadmill by Horizon. Powerful Motor, Folding Treadmill." ,
"displayed_price": "$999.00"
"source": "Horizon Fitness" ,
"url": "https://www.horizonfitness.com/horizon-7-0-at-treadmill"
"type": "shopping_element" ,
"title": "NordicTrack Commercial X32i Incline Treadmill Series" ,
"displayed_price": "$3,799.00"
"url": "https://www.nordictrack.com/incline-trainers/commercial-x32i"
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/g-card[1]/div[1]/div[1]" ,
"title": "Jobs Near New York, NY" ,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs&sa=X&ved=2ahUKEwiV1J_Gl4jmAhUiAmMBHY6HA-wQiYsCKAB6BAgSEAM" ,
"description": "Grailed\nNew York, NY" ,
"author": "via Built In NYC" ,
"job_posted_time": "Over 1 month ago" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"contract_type": "Full-time" ,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=sva_zVrSNMbg3Qx4AAAAAA%3D%3D"
"description": "New York Post\nNew York, NY" ,
"author": "via LinkedIn" ,
"job_posted_time": "Over 1 month ago" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"contract_type": "Full-time" ,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=7an02v1tOj4sF2QdAAAAAA%3D%3D"
"title": "Assistant Director, Search Engine Optimization" ,
"description": "Hospital for Special Surgery\nNew York, NY" ,
"author": "via LinkedIn" ,
"job_posted_time": "4 days ago" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"contract_type": "Full-time" ,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=gSWuAZR4HsDT0uhtAAAAAA%3D%3D"
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/g-card[1]/div[1]/div[1]" ,
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn" ,
"type": "events_element" ,
"title": "Metallica Tribute Show" ,
"snippet": "sáb., 19:00\nPrague Congress Centre, 5. května 1640/65\nPrague 4-Nusle, Tchéquia" ,
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn&sa=X&ved=2ahUKEwiXxsSc6MbnAhVmKLkGHTuZASQQ5bwDMAB6BAgPEAE#fpstate=tldetail&htidocid=wHvEAt0DuBX7XOr6JpA8-A%3D%3D&htivrt=events"
"type": "events_element" ,
"title": "Maluma Official Afterparty - Prague" ,
"snippet": "qui., 27 – sex., 28 de fev.\nDupleX, The Rooftop Venue, Václavské nám. 831/21\nNew Town, Tchéquia" ,
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn&sa=X&ved=2ahUKEwiXxsSc6MbnAhVmKLkGHTuZASQQ5bwDMAF6BAgQEAE#fpstate=tldetail&htidocid=H6X_mJy9t1p7DU8JJpA8-A%3D%3D&htivrt=events"
"type": "mention_carousel" ,
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/g-card[1]" ,
"title": "Top 16 IP Surveillance Cameras" ,
"type": "mention_carousel_element" ,
"title": "NordicTrack Commercial 1750" ,
"displayed_price": "$1,700+"
"title": "NordicTrack Commercial 1750 Review 2021" ,
"snippet": "The NordicTrack Commercial 1750 is a reliable, high-quality treadmill that will more than satisfy users." ,
"url": "https://www.fitrated.com/treadmills/nordictrack-commercial-1750-treadmill-review/#:~:text=The%20NordicTrack%20Commercial%201750,more%20than%20satisfy%20users."
"title": "Expert ReviewsBest home security camera 2020: The best IP security cameras to protect your home" ,
"url": "https://www.expertreviews.co.uk/ip-cameras/1405720/best-home-security-cameras-best-ip-security-camera-to-buy"
"type": "mention_carousel_element" ,
"title": "Nest Cam Outdoor" ,
"displayed_price": "$160+"
"title": "Nest Cam Outdoor Review" ,
"url": "https://www.trustedreviews.com/reviews/nest-cam-outdoor"
"title": "TechRadarBest security camera system for your business in 2020" ,
"url": "https://www.techradar.com/best/best-office-security-camera-systems"
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]" ,
"type": "recipes_element" ,
"title": "Homemade Pizza" ,
"url": "https://www.simplyrecipes.com/recipes/homemade_pizza/" ,
"domain": "www.simplyrecipes.com" ,
"source": "Simply Recipes" ,
"description": "Italian sausage, pesto, feta cheese, bell peppers, tomato sauce" ,
"type": "recipes_element" ,
"title": "How To Make The Best Homemade Pizza Recipe by Tasty" ,
"url": "https://tasty.co/recipe/pizza-dough" ,
"description": "Ricotta cheese, tomato sauce, fresh basil pesto, fresh mozzarella cheese, semolina flour" ,
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]" ,
"title": "Top sights in Pittsburgh" ,
"type": "top_sights_element" ,
"title": "Phipps Conservatory and Botanical Gardens4.8(6,300)Botanical gardens & Victorian greenhouse" ,
"url": "https://www.google.com/travel/things-to-do/see-all?g2lb=2502548,4258168,4270442,4306835,4317915,4322823,4328159,4371335,4401769,4403882,4419364,4424916,4425793,4428791,4432151,4432284,4270859,4284970,4291517,4412693&hl=en&gl=us&un=1&dest_mid=/m/068p2&dest_state_type=sattd&dest_src=ts&poi_mid=/m/077lw0&sa=X&ved=2ahUKEwij75zu5NnrAhURqXEKHUGZBbIQ69EBKAAwAHoECAoQKQ" ,
"description": "Botanical gardens & Victorian greenhouse" ,
"type": "top_sights_element" ,
"title": "The Andy Warhol Museum4.6(2,958)Warhol's works & the art he inspired" ,
"url": "https://www.google.com/travel/things-to-do/see-all?g2lb=2502548,4258168,4270442,4306835,4317915,4322823,4328159,4371335,4401769,4403882,4419364,4424916,4425793,4428791,4432151,4432284,4270859,4284970,4291517,4412693&hl=en&gl=us&un=1&dest_mid=/m/068p2&dest_state_type=sattd&dest_src=ts&poi_mid=/m/04n7k0b&sa=X&ved=2ahUKEwij75zu5NnrAhURqXEKHUGZBbIQ69EBKAEwAHoECAoQKw" ,
"description": "Warhol's works & the art he inspired" ,
"type": "scholarly_articles" ,
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]" ,
"title": "Scholarly articles for medicine articles" ,
"url": "http://scholar.google.com/scholar?q=medicine+articles&hl=en&as_sdt=0&as_vis=1&oi=scholart" ,
"type": "scholarly_articles_element" ,
"title": "… for publication in the Journal of Translational Medicine" ,
"url": "http://scholar.google.com/scholar_url?url=https://link.springer.com/article/10.1186/1479-5876-1-11&hl=en&sa=X&scisig=AAGBfm1WejtZnVCZsU3tzRdZElwwQaLqXw&nossl=1&oi=scholarr" ,
"description": "- Cited by 462"
"type": "scholarly_articles_element" ,
"title": "… in medicine -a review with quality grading of articles" ,
"url": "http://scholar.google.com/scholar_url?url=https://www.tandfonline.com/doi/abs/10.1080/01421599978979&hl=en&sa=X&scisig=AAGBfm2PM9wHLayDqCeL96xg-_gXFGKXMw&nossl=1&oi=scholarr" ,
"description": "- Cited by 612"
"type": "popular_products" ,
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]" ,
"type": "popular_products_element" ,
"title": "Philips Hue Sensor One" ,
"displayed_price": "$44+"
"type": "popular_products_element" ,
"title": "Aeon Labs AEOEZW100 White multimedia motion sensor Hardware/Electronic" ,
"displayed_price": "$59+"
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]" ,
"type": "podcasts_element" ,
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5ucHIub3JnLzM4MTQ0NDkwOC9wb2RjYXN0LnhtbA/episode/MWQ3Yzk2MDgtNDgzMy00ZTI2LTlhYTEtNjQ0NTY1ZTA4Yjcx" ,
"description": "Celebrating Sonny Rollins / Octavia Spencer" ,
"timestamp": "2020-09-13 22:42:55 +00:00" ,
"type": "podcasts_element" ,
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5ucHIub3JnLzM4MTQ0NDkwOC9wb2RjYXN0LnhtbA/episode/NzdhMDYyODQtZmU3ZS00OWNmLThiYjgtODczN2IxMjEyY2Ez" ,
"description": "Best Of: Cherry Jones / The Early Years Of The CIA" ,
"timestamp": "2020-09-11 14:42:55 +00:00" ,
"type": "questions_and_answers" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]" ,
"type": "questions_and_answers_element" ,
"url": "https://www.sarthaks.com/8816/predict-the-products-of-electrolysis-in-each-of-the-following" ,
"question_text": "Predict the products of electrolysis in each of the following:" ,
"answer_text": "Answer: We have\n\n(i) AgNO3 ionizes in aqueous solutions to form Ag+ and NO3- ions.\n\nOn electrolysis, either Ag+ ions or H2O molecules can be reduced ..." ,
"source": "Sarthaks eConnect" ,
"domain": "www.sarthaks.com" ,
"type": "questions_and_answers_element" ,
"url": "https://brainly.in/question/17093922" ,
"question_text": "Predict the products of electrolysis in each of the following:" ,
"answer_text": "Answer:7/8mg magnesium hope it helps" ,
"type": "questions_and_answers_element" ,
"url": "https://www.meritnation.com/ask-answer/question/predict-the-product-of-electrolysis-in-each-of-the-following/electrochemistry/11575355" ,
"question_text": "Predict the product of electrolysis in each of the following" ,
"answer_text": "Dear Student\n\nKindly refer to the link for similar query -\n\nhttps://www meritnation\ncom/ask-answer/q ..." ,
"domain": "www.meritnation.com" ,
"type": "questions_and_answers_element" ,
"url": "https://www.toppr.com/en-us/ask/question/predict-the-products-of-electrolysis-in-each-of-the-followingi-an-aqueous-solution-of-agno3/" ,
"question_text": "Predict the products of electrolysis" ,
"answer_text": "(i) An aqueous solution of AgNO3 with silver electrodes.At cathode: Silver ions have lower discharge potential than hydrogen ions. Hence, silver ions ..." ,
"domain": "www.toppr.com" ,
"type": "questions_and_answers_element" ,
"url": "https://www.toppr.com/ask/question/predict-the-products-of-electrolysis-in-each-of-the-followingan-aqueous-solution-of-cucl2with-platinum/" ,
"question_text": "Predict the products of electrolysis" ,
"answer_text": "When an aqueous solution of CuCl2 is electrolyzed with platinum electrodes, chlorine is obtained at anode and Cu is deposited at cathode. 2Cl - → Cl2 ..." ,
"domain": "www.toppr.com" ,
"type": "questions_and_answers_element" ,
"url": "https://brainly.in/question/2161527" ,
"question_text": "Predict the products of electrolysis in each of the following:" ,
"answer_text": "(i) an aqueous solution of AgNO3 with silver electrode.here two oxidation and two reduction half reactions must be considered .now, oxidation (at anode ..." ,
"type": "questions_and_answers_element" ,
"url": "https://learn.careers360.com/ncert/question-predict-the-product-of-electrolysis-in-each-of-the-following-an-aqueous-solution-of-cucl2-with-platinum-electrodes/" ,
"question_text": "Predict the products of electrolysis in each of the following:" ,
"domain": "learn.careers360.com" ,
"type": "questions_and_answers_element" ,
"url": "https://learn.careers360.com/ncert/question-predict-the-products-of-electrolysis-in-each-of-the-following-a-dilute-solution-of-h2so4-with-platinum-electrodes/" ,
"question_text": "Predict the products of electrolysis in each of the following:" ,
"domain": "learn.careers360.com" ,
"type": "find_results_on" ,
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]" ,
"type": "find_results_on_element" ,
"title": "Electrical service and electrician in London" ,
"domain": "www.gumtree.com" ,
"url": "https://www.gumtree.com/electrical-services/london" ,
"type": "find_results_on_element" ,
"title": "Electricians near London | Get a Quote" ,
"domain": "www.yell.com" ,
"url": "https://www.yell.com/s/electricians-london.html" ,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]" ,
"title": "Market Summary > Tesla Inc" ,
"source": "NASDAQ: TSLA" ,
"snippet": "Pre-market After hours 409.25 +3.23 (0.80%)" ,
"displayed_price": "579.21 USD"
"url": "https://www.google.com/finance?num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&sa=X&ved=2ahUKEwjvzarM89nsAhXs73MBHaYZCH4Q6M8CMAB6BAgCEAQ" ,
"domain": "www.google.com" ,
"date": "2020-10-28T15:40:00" ,
"date": "2020-10-28T15:45:00" ,
"date": "2020-10-28T15:50:00" ,
"date": "2020-10-28T15:55:00" ,
"date": "2020-10-28T16:00:00" ,
"date": "2020-10-28T16:00:00" ,
"date": "2020-10-28T16:05:00" ,
"date": "2020-10-28T16:10:00" ,
"date": "2020-10-28T16:15:00" ,
"date": "2020-10-28T16:20:00" ,
"type": "visual_stories" ,
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[3]/div[1]/g-card[1]" ,
"type": "visual_stories_element" ,
"title": "Best Things To Do in New York City – U.S. News & World Report" ,
"url": "https://travel.usnews.com/ampstories/newyorkcity" ,
"domain": "travel.usnews.com"
"type": "visual_stories_element" ,
"title": "Best things to do on New York City's Roosevelt Island" ,
"url": "https://www.cnn.com/ampstories/travel/best-things-to-do-on-new-york-citys-roosevelt-island" ,
"type": "visual_stories_element" ,
"title": "Things To Do In New York City" ,
"url": "https://livetheadventure.club/stories/things-to-do-in-new-york-city" ,
"domain": "livetheadventure.club"
"type": "visual_stories_element" ,
"title": "A local’s guide to what to eat and do in New York City" ,
"url": "https://www.washingtonpost.com/graphics/2019/lifestyle/travel/amp-stories/a-locals-guide-to-what-to-eat-and-do-in-new-york-city/" ,
"domain": "www.washingtonpost.com"
"type": "commercial_units" ,
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[1]/div[2]/div[1]/div[1]/div[1]" ,
"title": "Tickets & tours" ,
"type": "commercial_units_element" ,
"title": "9/11 Memorial at World Trade Center and Financial District Walking Tour" ,
"url": "https://www.viator.com/new-york-city/d687-ttd" ,
"domain": "www.viator.com" ,
"type": "commercial_units_element" ,
"title": "Brooklyn: 2-Hour Manhattan & Brooklyn Bridges Bike Tour" ,
"url": "https://www.getyourguide.com/s" ,
"domain": "www.getyourguide.com" ,
"source": "GetYourGuide" ,
"type": "commercial_units_element" ,
"title": "Private Carriage Ride in Central Park" ,
"url": "https://www.viator.com/new-york-city/d687-ttd" ,
"domain": "www.viator.com" ,
"type": "commercial_units_element" ,
"title": "Statue of Liberty Sail On The Classic Schooner Shearwater" ,
"url": "https://www.getyourguide.com/s" ,
"domain": "www.getyourguide.com" ,
"source": "GetYourGuide" ,
"type": "commercial_units_element" ,
"title": "Romantic Central Park Horse-Drawn Carriage Tour" ,
"url": "https://www.viator.com/new-york-city/d687-ttd" ,
"domain": "www.viator.com" ,
"displayed_price": "$287"
"type": "commercial_units_element" ,
"title": "New York in One Day Guided Sightseeing Tour" ,
"url": "https://www.viator.com/new-york-city/d687-ttd" ,
"domain": "www.viator.com" ,
"type": "commercial_units_element" ,
"title": "NYC: Statue of Liberty, Ellis Island, 911 & Cruise Pass" ,
"url": "https://www.getyourguide.com/s" ,
"domain": "www.getyourguide.com" ,
"displayed_price": "$100"
"source": "GetYourGuide" ,
"type": "commercial_units_element" ,
"title": "NYC Ground Zero: Family Tour with Ticket for 9/11 Museum" ,
"url": "https://www.getyourguide.com/s" ,
"domain": "www.getyourguide.com" ,
"displayed_price": "$479"
"source": "GetYourGuide" ,
"type": "local_services" ,
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]" ,
"title": "GOOGLE SCREENED|Personal Injury Lawyers nearby" ,
"url": "https://www.google.com/search?q=san+diego+personal+injury+lawyer&num=100&hl=en&gl=US&sabvi=Cjd4Y2F0OnNlcnZpY2VfYXJlYV9idXNpbmVzc19wZXJzb25hbF9pbmp1cnlfbGF3eWVyOmVuLVVT&sab=ChMIg4jfgciM8AIVgs3ICh2edA8hEhYIBBAAGgwIuPqdkwIQy8fIugkgACoAEhYIBBAAGgwIrrX5rAIQvua_vgkgACoAEhUIBBAAGgsIpf3TGhCzlK66CSAAKgAYyJDJqawNGJL3h-_3DBiDyr60uQ0" ,
"domain": "www.google.com" ,
"type": "local_services_element" ,
"title": "i Accident Lawyer" ,
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChIIuPqdkwIQy8fIugkY_8evoCUSN3hjYXQ6c2VydmljZV9hcmVhX2J1c2luZXNzX3BlcnNvbmFsX2luanVyeV9sYXd5ZXI6ZW4tVVMahAEvYWNsaz9zYT1MJmFpPURDaGNTRXdpRGlOLUJ5SXp3QWhXQ3pjZ0tIWjUwRHlFWUFCQVFHZ0p4ZFEmbGFiZWw9Z2xzX21lc3NhZ2VfY2xpY2tfZnJlZSZzaWc9QU9ENjRfMEZYY0pXVkEwZ0xxNTczbU50VFg0UGt1MlV0dyZhZHVybD0ify9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBS0dnSnhkUSZsYWJlbD1wcm9maWxlX3ZpZXdfZnJlZSZzaWc9QU9ENjRfMFotTjRyb0JaS01aQUgwdTdHclNqS2ZfSTdSQSZhZHVybD0qfi9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBT0dnSnhkUSZsYWJlbD1jYWxsX2J1dHRvbl9mcmVlJnNpZz1BT0Q2NF8yVVVLQ3dpTk9ueDk1MzVoaU1EY0VEZGFocENRJmFkdXJsPTKBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBR0dnSnhkUSZsYWJlbD1nbHNfY2FsbF9jbGlja19mcmVlJnNpZz1BT0Q2NF8wQlBNZzBSaG9PVjNlTm42MTFORE0teW54ekFRJmFkdXJsPTqBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBVEdnSnhkUSZsYWJlbD1nbHNfYm9va19jbGlja19mcmVlJnNpZz1BT0Q2NF8xd1VmQVlfd3p5LVhSUzJQVHEwblhwVnFValJnJmFkdXJsPUITCIOI34HIjPACFYLNyAodnnQPIUgEUAE" ,
"domain": "www.google.com" ,
"description": "20 years in business" ,
"profile_image_url": "https://lh3.googleusercontent.com/uzK7ihdygT9vLtKkhg387zYt2F1YKSXruQGteu8qcwrQuihexS3-B-KmgwWhh2w=fcrop64=1,5a1713919eba8d98"
"type": "local_services_element" ,
"title": "Hamparyan Personal Injury Lawyers, San Diego APC" ,
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChIIrrX5rAIQvua_vgkY_8evoCUSN3hjYXQ6c2VydmljZV9hcmVhX2J1c2luZXNzX3BlcnNvbmFsX2luanVyeV9sYXd5ZXI6ZW4tVVMahAEvYWNsaz9zYT1MJmFpPURDaGNTRXdpRGlOLUJ5SXp3QWhXQ3pjZ0tIWjUwRHlFWUFCQVJHZ0p4ZFEmbGFiZWw9Z2xzX21lc3NhZ2VfY2xpY2tfZnJlZSZzaWc9QU9ENjRfMWVRbGlWTGdUSU1KbGo5UThNUk9EdzJ4bEhlQSZhZHVybD0ify9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBSkdnSnhkUSZsYWJlbD1wcm9maWxlX3ZpZXdfZnJlZSZzaWc9QU9ENjRfMWwta3p0X0JRY0JOQ0FSdDlwTEFTMlJwVHRuUSZhZHVybD0qfi9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBTkdnSnhkUSZsYWJlbD1jYWxsX2J1dHRvbl9mcmVlJnNpZz1BT0Q2NF8yN3czUzZBMGZCVGJLYk1Zc1JIbldHR2p0NnlBJmFkdXJsPTKBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBRkdnSnhkUSZsYWJlbD1nbHNfY2FsbF9jbGlja19mcmVlJnNpZz1BT0Q2NF8yU2Q0dzNfV3V0NmxpTnV5THI1VjNlZTBpd2FBJmFkdXJsPTqBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBVkdnSnhkUSZsYWJlbD1nbHNfYm9va19jbGlja19mcmVlJnNpZz1BT0Q2NF8yUm1jUDZxS3ZoV3F1UkFJdkhMSllXbGRxaUR3JmFkdXJsPUITCIOI34HIjPACFYLNyAodnnQPIUgEUAI" ,
"domain": "www.google.com" ,
"description": "9 years in business" ,
"profile_image_url": "https://lh3.googleusercontent.com/GKIL8cPY1NGPlxycDLvn7r7362_MqHFIgUQLvFTQW8sWAJx6InAscqv4sfWQ8Q=fcrop64=1,3e2300babb62bc82"
"type": "local_services_element" ,
"title": "Pines Salomon Injury Lawyers, APC" ,
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChEIpf3TGhCzlK66CRj_x6-gJRI3eGNhdDpzZXJ2aWNlX2FyZWFfYnVzaW5lc3NfcGVyc29uYWxfaW5qdXJ5X2xhd3llcjplbi1VUxqEAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBU0dnSnhkUSZsYWJlbD1nbHNfbWVzc2FnZV9jbGlja19mcmVlJnNpZz1BT0Q2NF8ydTdPWWo0dmg3SC14NmN5U0NwT3RfVGhJYlNRJmFkdXJsPSJ_L2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFJR2dKeGRRJmxhYmVsPXByb2ZpbGVfdmlld19mcmVlJnNpZz1BT0Q2NF8waXo4WkQ0aHZaUnNlZy00cmI4d2xVUlhfbmFRJmFkdXJsPSp-L2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFNR2dKeGRRJmxhYmVsPWNhbGxfYnV0dG9uX2ZyZWUmc2lnPUFPRDY0XzBwQVdBWGhqMHVIVUctR04zZVpucy05enVtZmcmYWR1cmw9MoEBL2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFFR2dKeGRRJmxhYmVsPWdsc19jYWxsX2NsaWNrX2ZyZWUmc2lnPUFPRDY0XzJhRGcyT2hEMDBfYU05eFphbTQ2aEVsWmNrOUEmYWR1cmw9OoEBL2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFVR2dKeGRRJmxhYmVsPWdsc19ib29rX2NsaWNrX2ZyZWUmc2lnPUFPRDY0XzBpS2wxaHhUMFhMOHpNV2RhNGwzM3U2anR3aEEmYWR1cmw9QhMIg4jfgciM8AIVgs3ICh2edA8hSARQAw" ,
"domain": "www.google.com" ,
"description": "29 years in business" ,
"profile_image_url": "https://lh3.googleusercontent.com/PMP8ZawJe51VdRcJzKfSDcQXxmoviIp4VA7aCFr_Z5AmP2yJu3JEE1UGKw5fxw=fcrop64=1,249200a8ecf2aa4f"
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[8]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[4]/div[1]/div[1]/a[1]" ,
"hotel_identifier": "CgsI4srPluaypZuVARAB" ,
"url": "https://google.com/travel/hotels/entity/CgsI4srPluaypZuVARAB"
"keyword": "albert einstein" ,
"se_domain": "google.com" ,
"check_url": "https://www.google.com/search?q=car%20insurance&num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc" ,
"datetime": "2021-10-01 03:37:47 +00:00" ,
"se_results_count": 2070000000 ,
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]" ,
"title": "Car Insurance - Get a Fast Free Quote Online" ,
"domain": "www.statefarm.com" ,
"description": "Get a Free Quote Online and See How Much You Can Save with State Farm. Save with Our Surprisingly Great Rates on Car Insurance. Get a Quote! Save up to 40% Local agents." ,
"breadcrumb": "https://www.statefarm.com/" ,
"url": "https://www.statefarm.com/quote-start" ,
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABAAGgJscg"
"description_rows": null ,
"type": "ad_link_element" ,
"title": "Switch And Save" ,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABABGgJscg" ,
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABABGgJscg"
"type": "ad_link_element" ,
"title": "Free Quick Auto Quote" ,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABACGgJscg" ,
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABACGgJscg"
"type": "ad_link_element" ,
"title": "Find An Agent" ,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABADGgJscg" ,
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABADGgJscg"
"main_domain": "statefarm.com" ,
"relative_url": "/quote-start" ,
"impressions_etv": 4461.85206 ,
"estimated_paid_traffic_cost": 2664105.4044432 ,
"previous_rank_absolute": null ,
{
"version": "0.1.20220216",
"status_code": 20000,
"status_message": "Ok.",
"time": "23.9825 sec.",
"cost": 0.0005,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "02171444-2806-0380-0000-3d1691a4ad1b",
"status_code": 20000,
"status_message": "Ok.",
"time": "23.9043 sec.",
"cost": 0.0005,
"result_count": 1,
"path": [
"v3",
"dataforseo_labs",
"historical_serps",
"live"
],
"data": {
"api": "dataforseo_labs",
"function": "historical_serps",
"keyword": "albert einstein",
"language_name": "English",
"location_code": 2840,
"date_from": "2021-08-01",
"date_to": "2021-10-01"
},
"result": [
{
"keyword": "albert einstein",
"location_code": 2840,
"language_code": "en",
"total_count": 5,
"items_count": 5,
"items": [
{
"keyword": "albert einstein",
"type": "organic",
"se_domain": "google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://www.google.com/search?q=albert%20einstein&num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc",
"datetime": "2021-08-01 08:05:11 +00:00",
"spell": null,
"item_types": [
"answer_box",
"carousel",
"multi_carousel",
"featured_snippet",
"google_flights",
"google_reviews",
"google_posts",
"images",
"jobs",
"knowledge_graph",
"local_pack",
"math_solver",
"hotels_pack",
"map",
"organic",
"paid",
"people_also_ask",
"related_searches",
"people_also_search",
"shopping",
"top_stories",
"twitter",
"video",
"events",
"mention_carousel",
"recipes",
"top_sights",
"scholarly_articles",
"popular_products",
"podcasts",
"questions_and_answers",
"find_results_on",
"stocks_box",
"visual_stories",
"commercial_units",
"local_services",
"google_hotels"
],
"se_results_count": 85600000,
"items_count": 96,
"items": [
{
"type": "carousel",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[7]/div[1]",
"title": "Star Wars original trilogy/Cast",
"items": [
{
"type": "carousel_element",
"title": "Carrie Fisher",
"sub_title": "Princess Leia"
},
{
"type": "carousel_element",
"title": "Mark Hamill",
"sub_title": "Luke Skywalker"
},
{
"type": "carousel_element",
"title": "Anthony Daniels",
"sub_title": "C-3PO"
}
]
},
{
"type": "multi_carousel",
"rank_group": 1,
"rank_absolute": 2,
"position": "right",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[5]/div[1]/div[3]/div[1]/div[1]/div[1]/sticky-header[1]/div[2]/div[1]/g-flippy-carousel[1]/div[1]/div[1]/ol[1]/li[1]/span[1]/div[1]/div[1]/div[1]/div[3]/div[8]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]",
"items": [
{
"type": "multi_carousel_element",
"title": "Types of molds",
"multi_carousel_snippets": [
{
"type": "multi_carousel_snippet",
"title": "Aspergillus niger"
},
{
"type": "multi_carousel_snippet",
"title": "Penicillium chrysogen..."
},
{
"type": "multi_carousel_snippet",
"title": "Black bread mold"
},
{
"type": "multi_carousel_snippet",
"title": "Aspergillus oryzae"
},
{
"type": "multi_carousel_snippet",
"title": "Aspergillus flavus"
},
{
"type": "multi_carousel_snippet",
"title": "Penicillium digitatum"
},
{
"type": "multi_carousel_snippet",
"title": "Alternaria alternata"
},
{
"type": "multi_carousel_snippet",
"title": "Cladospor... cladospori..."
}
]
},
{
"type": "multi_carousel_element",
"title": "Fungi species",
"multi_carousel_snippets": [
{
"type": "multi_carousel_snippet",
"title": "Claviceps purpurea"
},
{
"type": "multi_carousel_snippet",
"title": "Botrytis cinerea"
},
{
"type": "multi_carousel_snippet",
"title": "Corn smut"
},
{
"type": "multi_carousel_snippet",
"title": "Splitgill mushroom"
},
{
"type": "multi_carousel_snippet",
"title": "Beauveria bassiana"
},
{
"type": "multi_carousel_snippet",
"title": "Gibberella zeae"
},
{
"type": "multi_carousel_snippet",
"title": "Magnapor... grisea"
},
{
"type": "multi_carousel_snippet",
"title": "Neurospora crassa"
}
]
}
]
},
{
"type": "top_stories",
"rank_group": 1,
"rank_absolute": 3,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/g-section-with-header[1]/div[2]",
"items": [
{
"type": "top_stories_element",
"source": "Sky News",
"domain": "news.sky.com",
"title": "UK takes charge of coalition Gulf mission to protect ships from Iran",
"date": "2 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://news.sky.com/story/uk-takes-charge-of-coalition-gulf-mission-to-protect-ships-from-iran-11921404"
},
{
"type": "top_stories_element",
"source": "The Jerusalem Post",
"domain": "www.jpost.com",
"title": "Iranian factory makes Israeli and American flags to burn",
"date": "6 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.jpost.com/International/Iranian-factory-makes-Israeli-and-American-flags-to-burn-615902"
},
{
"type": "top_stories_element",
"source": "Reuters",
"domain": "www.reuters.com",
"title": "Iranian factory makes U.S. and Israeli flags to burn",
"date": "7 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.reuters.com/article/us-iran-flags/iranian-factory-makes-us-and-israeli-flags-to-burn-idUSKBN1ZT065"
}
]
},
{
"type": "answer_box",
"rank_group": 1,
"rank_absolute": 4,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]",
"text": [
"Which is the best iPhone?",
"Best iPhone: which one should you buy today",
"More items...",
"•",
"Sep 19, 2019",
"iPhone 11. The best Apple iPhone bang for your buck. ...",
"iPhone 11 Pro Max. Big phone, best phone, top price. ...",
"iPhone 8. The newest 4.7-inch iPhone is a phone lots of people still want. ...",
"iPhone 8 Plus. A more affordable, big screen iPhone. ...",
"iPhone XR. ...",
"iPhone SE. ...",
"iPhone XS Max. ...",
"iPhone XS.",
"https://www.techradar.com › news › best-iphone",
"Best iPhone 2019: which Apple phone is the best? | TechRadar",
"Search for:",
"Which is the best iPhone?",
"What is the function of iPhone?",
"The",
"is a smartphone made by Apple that combines a computer, iPod, digital camera and cellular phone into one device with a touchscreen interface. The",
"runs the iOS operating system (OS), and as of 2017, there were 2.2 million apps available for it through the Apple App Store, according to Statista.",
"iPhone",
"iPhone",
"https://searchmobilecomputing.techtarget.com › definition › iPhone"
],
"links": [
{
"type": "link_element",
"title": "More items...",
"description": null,
"url": "https://www.techradar.com/news/best-iphone"
},
{
"type": "link_element",
"title": "Best iPhone 2019: which Apple phone is the best? | TechRadarhttps://www.techradar.com › news › best-iphone",
"description": null,
"url": "https://www.techradar.com/news/best-iphone"
},
{
"type": "link_element",
"title": "Which is the best iPhone?",
"description": null,
"url": "https://www.google.com.ua/search?num=100&hl=en&gl=UA&q=Which+is+the+best+iPhone%3F&sa=X&ved=2ahUKEwie3MvG1tXlAhWIM48KHUHqBvoQzmd6BAhfEA0"
}
]
},
{
"type": "math_solver",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"title": "3x^2-1x^2=50",
"result": "x=5 x=-5",
"items": [
{
"type": "math_solver_element",
"title": "Quadratic formula",
"expanded_element": [
{
"type": "math_solver_expanded_element",
"title": "Combine like terms",
"solution": [
"3x^2-x^2=50",
"2x^2=50"
]
},
{
"type": "math_solver_expanded_element",
"title": "Move terms to the left side",
"solution": [
"2x^2=50",
"2x^2-50=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Common factor",
"solution": [
"2x^2-50=0",
"2(x^2-25)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Divide both sides of the equation by the same term",
"solution": [
"2(x^2-25)=0",
"x^2-25=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Use the quadratic formula",
"solution": [
"x=((-b±sqrt(b^2-4ac))/(2a))",
"Once in standard form, identify a, b, and c from the original equation and plug them into the quadratic formula.",
"x^2-25=0",
"a=1",
"b=0",
"c=-25",
"x=((-0±sqrt(0^2-4×1(-25)))/(2×1))"
]
},
{
"type": "math_solver_expanded_element",
"title": "Simplify",
"solution": [
"x=((±10)/(2))"
]
},
{
"type": "math_solver_expanded_element",
"title": "Separate the equations",
"solution": [
"To solve for the unknown variable, separate into two equations: one with a plus and the other with a minus.",
"x=((10)/(2))",
"x=((-10)/(2))"
]
},
{
"type": "math_solver_expanded_element",
"title": "Solve",
"solution": [
"Rearrange and isolate the variable to find each solution",
"x=5",
"x=-5"
]
}
]
},
{
"type": "math_solver_element",
"title": "Factor",
"expanded_element": [
{
"type": "math_solver_expanded_element",
"title": "Combine like terms",
"solution": [
"3x^2-x^2=50",
"2x^2=50"
]
},
{
"type": "math_solver_expanded_element",
"title": "Move terms to the left side",
"solution": [
"2x^2=50",
"2x^2-50=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Common factor",
"solution": [
"2x^2-50=0",
"2(x^2-25)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Use the sum-product pattern",
"solution": [
"2(x^2-25)=0",
"2(x^2+5x-5x-25)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Common factor from the two pairs",
"solution": [
"2((x^2+5x)+(-5x-25))=0",
"2(x(x+5)-5(x+5))=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Rewrite in factored form",
"solution": [
"2(x(x+5)-5(x+5))=0",
"2(x-5)(x+5)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Create separate equations",
"solution": [
"2(x-5)(x+5)=0",
"x-5=0 x+5=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Solve",
"solution": [
"Rearrange and isolate the variable to find each solution",
"x=-5",
"x=5"
]
}
]
}
],
"links": [
{
"type": "link_element",
"title": "Tiger Algebra",
"description": null,
"url": "https://www.tiger-algebra.com/en/solvetext/3x%5E2-x%5E2%3D50/?origin=googlemath"
},
{
"type": "link_element",
"title": "Symbolab",
"description": null,
"url": "https://www.symbolab.com/solver?or=gms&query=3x%5E2-x%5E2%3D50"
},
{
"type": "link_element",
"title": "Mathway",
"description": null,
"url": "https://www.mathway.com/?asciimath=3x%5E2-x%5E2%3D50"
},
{
"type": "link_element",
"title": "Mathforyou",
"description": null,
"url": "https://mathforyou.net/en/online/equation/arbitrary/?e0=3x%5E2-x%5E2%3D50&v0=x&o0=1&from=google"
}
]
},
{
"type": "video",
"rank_group": 1,
"rank_absolute": 5,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[7]/div[1]/g-section-with-header[1]/div[2]",
"items": [
{
"type": "video_element",
"source": "YouTube",
"title": "Google Pixel 4 XL vs. iPhone 11 Pro Max Speed Test",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.youtube.com/watch?v=Osp8K7W3qDY"
},
{
"type": "video_element",
"source": "YouTube",
"title": "iPhone XR vs iPhone 11 - Which Should You Choose?",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.youtube.com/watch?v=BZ5fdNNHVu0"
},
{
"type": "video_element",
"source": "YouTube",
"title": "Why iPhone 11 Is Apple's Least Innovative iPhone Yet",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.youtube.com/watch?v=7YyTCa6IMKA"
}
]
},
{
"type": "organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]",
"domain": "dataforseo.com",
"title": "SEO software API. API for agencies. Best SEO data API provider.",
"url": "https://dataforseo.com/",
"breadcrumb": "https://dataforseo.com",
"is_image": false,
"is_video": false,
"is_featured_snippet": false,
"is_malicious": false,
"description": "DataForSEO – the best data provider for SEO-software companies and agencies ... We make our project live because we believe that we're helping companies to fill ...",
"pre_snippet": null,
"extended_snippet": null,
"amp_version": false,
"rating": null,
"highlighted": [
"DataForSEO"
],
"links": [
{
"type": "link_element",
"title": "APIs",
"description": null,
"url": "https://dataforseo.com/apis"
},
{
"type": "link_element",
"title": "DataForSEO Labs API",
"description": null,
"url": "https://dataforseo.com/apis/dataforseo-labs-api"
},
{
"type": "link_element",
"title": "Pricing",
"description": null,
"url": "https://dataforseo.com/pricing"
},
{
"type": "link_element",
"title": "Login",
"description": null,
"url": "https://my.dataforseo.com/login"
},
{
"type": "link_element",
"title": "SERP APIs",
"description": null,
"url": "https://dataforseo.com/apis/serp-api"
}
],
"about_this_result": {
"type": "about_this_result_element",
"url": "https://dataforseo.com/",
"source": null,
"source_info": null,
"source_url": null,
"language": "English",
"location": "the United States",
"search_terms": [
"data",
"seo"
],
"related_terms": null
},
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
},
{
"type": "people_also_search",
"rank_group": 1,
"rank_absolute": 7,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]",
"title": "List of iPhonesView 3+ moreView 3+",
"items": [
"View 3+ moreView 3+",
"iPhone XR",
"Apple iPhone 7 Plus",
"Apple iPhone 8 Plus",
"iPhone 6 Plus",
"iPhone 6s Plus",
"iPhone 5s",
"iPhone SE"
]
},
{
"type": "related_searches",
"rank_group": 1,
"rank_absolute": 8,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]/div[3]/g-section-with-header[1]/div[2]",
"position": "left",
"items": [
"iphone xr",
"iphone xs",
"iphone 11",
"iphone price",
"iphone 8",
"iphone xs max",
"iphone 11 price",
"iphone xs price"
]
},
{
"type": "map",
"rank_group": 1,
"rank_absolute": 9,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]",
"title": "Nevada United States",
"url": null
},
{
"type": "featured_snippet",
"rank_group": 1,
"rank_absolute": 10,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]",
"domain": "www.rome.net",
"title": "Rome Metro - Lines, hours, fares and Rome metro maps",
"featured_title": null,
"description": "Most important metro stationsCipro - Musei Vaticani: The closest stop to the Vatican Museums and to the Sistine Chapel.Ottaviano - San Pietro: This station is a few minutes' walk from St. Peter's Square and St. Peter's Basilica.Spagna: Very convenient for visiting Piazza di Spagna and Villa Borghese.More items...",
"url": "https://www.rome.net/metro",
"table": {
"table_header": [
"Site",
"Domain",
"Alexa top 100 global websites (As of April 3, 2017)"
],
"table_content": [
[
"Wikipedia",
"wikipedia.org",
"5"
],
[
"Yahoo!",
"yahoo.com",
"6"
],
[
"Reddit",
"reddit.com",
"7"
],
[
"Google India",
"google.co.in",
"8"
]
],
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
}
},
{
"type": "local_pack",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]",
"title": "The Signal Pub",
"description": "0.1 mi · 7 Devonshire Rd \n\nDine-in · Takeaway \n",
"domain": null,
"phone": null,
"url": null,
"is_paid": false,
"rating": {
"rating_type": "Max5",
"value": 4.1,
"votes_count": null,
"rating_max": 5
},
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
},
{
"type": "hotels_pack",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[2]/div[9]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]",
"title": "Places to Stay | New York, NY",
"date_from": "2021-03-13",
"date_to": "2021-03-14",
"items": [
{
"type": "hotels_pack_element",
"price": {
"current": 198,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$198"
},
"title": "DoubleTree by Hilton Hotel New York Times Square West",
"description": "13% off \n",
"hotel_identifier": "CgoIuuav9KbOg9kvEAE",
"domain": "www.google.com",
"url": "https://www.google.com/travel/hotels/New%20York/entity/CgoIuuav9KbOg9kvEAE?g2lb=2502548,2503781,4258168,4270442,4306835,4317915,4328159,4371334,4401769,4419364,4429192,4463666,4464737,4472151,4482194,4482438,4486153,4491350,4495816,4500614,4501241,4509286,4511370,4270859,4284970,4291517&hl=en-US&gl=us&ap=aAE&grf=ErAMCiwIDhIoEiZyJCoiCgcI5Q8QAxgNEgcI5Q8QAxgOIAAwHkDKAkoHCOUPEAMYAhILCCkoAToF0gICCAESCggNKAE6BGoCCAESCggHKAE6BDoCIAESCggCKAE6BBICCAESDAgKEAIoAToEWgIIBhIMCAoQAigBOgRaAggJEgwIChACKAE6BFoCCAgSDAgKEAIoAToEWgIIChIMCAoQAigBOgRaAggCEgwIChACKAE6BFoCCAESDAgKEAIoAToEWgIIAxIMCAoQAigBOgRaAggHEgoIBCgBOgQiAhABEgsIKCgBOgXKAgIIARILCBMoAjoFmgECCAESBAgfKAMaQggKEgYKBFoCCAYSBgoEWgIICRIGCgRaAggIEgYKBFoCCAoSBgoEWgIIAhIGCgRaAggBEgYKBFoCCAMSBgoEWgIIBxoCCAIaAggNGgIIBBoLCBMSBwoFmgECCAEaAggOGkIIBxIOCgw6CgoDCJYBGgNVU0QSDgoMOgoKAwj6ARoDVVNEEg4KDDoKCgMIrAIaA1VTRBIOCgw6CgoDCN4CGgNVU0QaiQkIHxIJCgWCAgIIISACEgsKB4ICBAgIGCEgARILCgeCAgQIVBghIAESCgoGggIDCPABIAESCQoFggICCBIgEhIMCgiCAgUImwEYEiAIEgsKB4ICBAhoGBIgBhILCgeCAgQIaRgSIAESCQoFggICCBQgHBILCgeCAgQIcBgUIAISCwoHggIECB0YFCABEgsKB4ICBAgbGBQgChILCgeCAgQIMBgUIAISCwoHggIECFIYFCAEEgsKB4ICBAhOGBQgAhILCgeCAgQIFxgUIAQSCgoGggIDCJwBIAESCgoGggIDCKECIAISCQoFggICCBwgPhILCgeCAgQIchgcIAESCwoHggIECAcYHCACEgsKB4ICBAhRGBwgCBILCgeCAgQIWBgcIAISCwoHggIECHMYHCAPEgsKB4ICBAhHGBwgDhILCgeCAgQIXxgcIAMSCwoHggIECDYYHCAHEgsKB4ICBAgkGBwgARILCgeCAgQITRgcIAMSDAoIggIFCJ0CGBwgARILCgeCAgQIKRgcIAESCQoFggICCCUgEhILCgeCAgQIdRglIAESDAoIggIFCKACGCUgAhILCgeCAgQIdxglIAISCwoHggIECHgYJSACEgsKB4ICBAh5GCUgBhILCgeCAgQIehglIAESCwoHggIECHYYJSABEgkKBYICAghkIAESCQoFggICCBEgLRILCgeCAgQIKhgRIAQSDAoIggIFCJoCGBEgBBILCgeCAgQIQBgRIAsSCwoHggIECDgYESAQEgsKB4ICBAhXGBEgBBILCgeCAgQIAhgRIAISCwoHggIECH8YESACEgsKB4ICBAgrGBEgARIJCgWCAgIILiBtEgwKCIICBQiAARguIAISCwoHggIECDwYLiAFEgsKB4ICBAg7GC4gAxILCgeCAgQIVhguIBESDAoIggIFCIACGC4gAhILCgeCAgQIOhguIBMSDAoIggIFCIcBGC4gBhILCgeCAgQIGhguIAESCwoHggIECEgYLiABEgsKB4ICBAg9GC4gBxIMCgiCAgUIgQEYLiAEEgwKCIICBQiDARguIAMSCwoHggIECEsYLiAMEgsKB4ICBAgDGC4gARILCgeCAgQIDBguIAUSCwoHggIECFMYLiAGEgsKB4ICBAgoGC4gAxIMCgiCAgUIiQEYLiADEgsKB4ICBAgnGC4gAxIKCgaCAgMIrgEgARINCgmCAgYIswEYrgEgARIKCgaCAgMIqQEgARINCgmCAgYIqwEYqQEgARIKCgaCAgMI4QIgARIMCgiCAgUIYxjhAiABEgkKBYICAghQIAYSCwoHggIECBkYUCABEgsKB4ICBAhMGFAgBRIJCgWCAgIIBCABEgoKBoICAwijASACEg0KCYICBgikARijASACEgkKBYICAgg1ICASCwoHggIECBMYNSAJEgsKB4ICBAgLGDUgCRILCgeCAgQIMRg1IAESCwoHggIECDIYNSAEEgsKB4ICBAhdGDUgAxIMCgiCAgUInAIYNSABEgsKB4ICBAgQGDUgAhILCgeCAgQIRBg1IAMiAiAB&q=place+to+stay+in+new+york&rp=ELrmr_SmzoPZLxDPoIis7IK7xScQqaXNmf6b0YyyARC6we3X-MPQ_vgBOAFAAEgCogEMTmV3IFlvcmssIE5ZwAEDyAEA&ictx=1",
"is_paid": false,
"rating": {
"rating_type": "Max5",
"value": 3.8,
"votes_count": 2995,
"rating_max": 5
}
}
]
},
{
"type": "twitter",
"rank_group": 1,
"rank_absolute": 12,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/g-section-with-header[1]",
"title": null,
"url": null,
"items": [
{
"type": "twitter_element",
"tweet": "pic.twitter.com/z0I7wBs…",
"date": "6 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://twitter.com/realDonaldTrump/status/1192640102943674368"
},
{
"type": "twitter_element",
"tweet": "STATEMENT FROM PRESIDENT DONALD J. TRUMP pic.twitter.com/EktztHf…",
"date": "9 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://twitter.com/realDonaldTrump/status/1192594646691729408"
},
{
"type": "twitter_element",
"tweet": "Stock Market up big today. A New Record. Enjoy!",
"date": "18 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://twitter.com/realDonaldTrump/status/1192467617140924417"
}
]
},
{
"type": "knowledge_graph",
"rank_group": 1,
"rank_absolute": 1,
"position": "right",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]",
"title": "Eminem",
"sub_title": "American rapper",
"description": "Marshall Bruce Mathers III, known professionally as Eminem, is an American rapper, songwriter, and record producer. Wikipedia",
"card_id": "/m/01vsgrn",
"url": "http://www.eminem.com/",
"image_url": "https://lh5.googleusercontent.com/p/AF1QipOXJ3a4wLbI0j2Z0UbABhMqxH2-19RwzXty0obc=w120-h160-k-no",
"logo_url": "https://lh6.googleusercontent.com/-faPtDtkXReo/AAAAAAAAAAI/AAAAAAAAAAA/zSDtky4Hnkg/s44-p-k-no-ns-nd/photo.jpg",
"cid": null,
"items": [
{
"type": "knowledge_graph_images_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]",
"link": {
"type": "link_element",
"title": "More images",
"url": "https://www.google.com/search?num=100&source=univ&tbm=isch&q=eminem&gl=US&hl=en&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQiR56BAgjEBI",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/a[1]"
},
"items": [
{
"type": "knowledge_graph_images_element",
"url": "http://google.com/search?tbm=isch&q=Marshall+Mathers",
"domain": "google.com",
"alt": "Image result for eminem",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:0",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]"
},
{
"type": "knowledge_graph_images_element",
"url": "https://www.biography.com/musician/eminem",
"domain": "www.biography.com",
"alt": "Image result for eminem",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:1",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]"
}
]
},
{
"type": "knowledge_graph_description_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]",
"text": "Marshall Bruce Mathers III, known professionally as Eminem, is an American rapper, songwriter, and record producer. Wikipedia",
"links": [
{
"type": "link_element",
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/Eminem",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/span[2]/a[1]"
}
]
},
{
"type": "knowledge_graph_row_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]",
"title": "Born",
"data_attrid": "kc:/people/person:born",
"text": "October 17, 1972 (age 48 years), Saint Joseph, MO",
"links": [
{
"type": "link_element",
"title": "Born",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+born&stick=H4sIAAAAAAAAAOPgE-LSz9U3MCwrTi_K0xLLTrbSL0jNL8hJBVJFxfl5Vkn5RXmLWLlTczPzUnMVQDwAjiIGizQAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQ6BMoADCEAXoECBUQAg",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/span[1]/a[1]"
},
{
"type": "link_element",
"title": "Saint Joseph, MO",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Saint+Joseph,+Missouri&stick=H4sIAAAAAAAAAOPgE-LSz9U3MCwrTi_KU-IEs41NC8y1xLKTrfQLUvMLclKBVFFxfp5VUn5R3iJWseDEzLwSBa_84tSCDB0F38zi4vzSoswdrIwAB8H08E0AAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQmxMoATCEAXoECBUQAw",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/span[2]/a[1]"
}
]
},
{
"type": "knowledge_graph_list_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]",
"title": "Songs",
"data_attrid": "kc:/music/artist:songs",
"link": {
"type": "link_element",
"title": "View 25+ more",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+songs&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU0Jia4llJ1vp55YWZybrJxaVZBaXWBXn56UXL2LlSc3NzEvNVQBzd7AyAgDxd6QwRAAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQMTCJAXoECA8QDQ",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[3]/a[1]"
},
"items": [
{
"type": "knowledge_graph_list_element",
"title": "Lose Yourself",
"subtitle": "8 Mile: Music from and Inspired by the Motion Picture · 2002",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+lose+yourself&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-LRT9c3LDYwLSxMjy_SEvQtLc5MdiwqySwuCckPzs9LX8QqkpqbmZeaq5CTX5yqUJlfWlScmpMGAGgNlUFGAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQri4wiQF6BAgPEAQ",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:20",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]"
},
{
"type": "knowledge_graph_list_element",
"title": "Love the Way You Lie",
"subtitle": "Recovery · 2010",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+love+the+way+you+lie&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-LRT9c3LDYwLSoyqTDUEvQtLc5MdiwqySwuCckPzs9LX8QqnZqbmZeaq5CTX5aqUJKRqlCeWKlQmV-qkJOZCgDBoMK9TQAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQri4wiQF6BAgPEAc",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:21",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]"
}
]
},
{
"type": "knowledge_graph_carousel_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]",
"title": "People also search for",
"data_attrid": "kc:/people/person:sideways",
"link": {
"type": "link_element",
"title": "View 15+ more",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Eminem&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU0Jia0llJ1vpF6TmF-SkAqmi4vw8q-LMlNTyxMriRaxsrrmZeam5O1gZATU92aRCAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQzTooATCLAXoECBgQAg",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/a[1]"
},
"items": [
{
"type": "knowledge_graph_carousel_element",
"title": "Hailie Jade",
"subtitle": "Daughter",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Hailie+Jade&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-IEsZNSMoxTtPgCUouK8_OCM1NSyxMrixexcnskZuZkpip4Jaak7mBlBABrZrx2OgAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQxA0wiwF6BAgYEAU",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:28",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]"
},
{
"type": "knowledge_graph_carousel_element",
"title": "Kimberly Anne Scott",
"subtitle": "Former spouse",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Kimberly+Anne+Scott&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KUwKzjZOL84zztPgCUouK8_OCM1NSyxMrixexCntn5ialFuVUKjjm5aUqBCfnl5TsYGUEADMZFYNDAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQxA0wiwF6BAgYEAc",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:29",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]"
}
]
},
{
"type": "knowledge_graph_part_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]",
"title": "Questions & answers",
"data_attrid": "kc:/local:place qa",
"text": "Questions & answers Ask a question See all questions (7)",
"links": [
{
"type": "link_element",
"title": "Ask a question",
"url": "https://www.google.com/#",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]/div[2]/span[1]/a[1]"
},
{
"type": "link_element",
"title": "See all questions (7)",
"url": "https://www.google.com/#",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]/div[2]/a[1]"
}
]
},
{
"type": "knowledge_graph_expanded_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[9]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[8]/div[1]/div[1]",
"title": "Size",
"data_attrid": "okra/answer_panel/Size",
"expanded_element": [
{
"type": "knowledge_graph_expanded_element",
"featured_title": "They say there are only three things in this world you can count on—death, taxes, and that social media sizes that you've committed to memory will change out of the blue....Instagram Image Sizes 2020.",
"url": "https://www.picmonkey.com/blog/size-matters-instagram-photo-sizes-made-easy",
"domain": "www.picmonkey.com",
"title": "Instagram Photo Sizes 2021 | Create Instagram Images | PicMonkey",
"snippet": null,
"table": {
"table_element": "table_element",
"table_header": [
"Social media image type",
"Dimensions in pixels"
],
"table_content": [
[
"Instagram Post",
"1080 x 1080 (1:1 ratio)"
],
[
"Instagram Profile Photo",
"360 x 360"
]
]
}
}
]
}
]
},
{
"type": "knowledge_graph_shopping_item",
"rank_group": 1,
"rank_absolute": 3,
"position": "left",
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[3]/div[1]/div[2]/div[2]/sticky-header[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]",
"title": null,
"data_attrid": null,
"items": [
{
"type": "knowledge_graph_shopping_element",
"title": "Apple",
"url": "https://www.apple.com/us/xc/product/MGHH3?purchaseOption=cp&cid=aos-us-seo-pla",
"domain": "www.apple.com",
"price": {
"current": 979,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$979.00"
},
"source": "Apple",
"snippet": "256 GB storage · Unlocked · Black",
"marketplace": null,
"marketplace_url": null
},
{
"type": "knowledge_graph_shopping_element",
"title": "T-Mobile",
"url": "https://www.t-mobile.com/cell-phone/apple-iphone-12?sku=194252429563",
"domain": "www.t-mobile.com",
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$0.00 now"
},
"source": "T-Mobile",
"snippet": "64 GB storage · T-Mobile · Purple",
"marketplace": null,
"marketplace_url": null
},
{
"type": "knowledge_graph_shopping_element",
"title": "AT&T",
"url": "https://www.att.com/buy/phones/apple-iphone-12-128gb-white.html",
"domain": "www.att.com",
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$0.00 now"
},
"source": "AT&T",
"snippet": "128 GB storage · AT&T · White",
"marketplace": null,
"marketplace_url": null
}
]
},
{
"type": "paid",
"rank_group": 1,
"rank_absolute": 14,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/ol[1]/li[1]",
"title": "Cheap Flights to Kharkov | Book Now & Save on CheapOair®",
"domain": "www.cheapoair.com",
"description": "Our Low Cost Flights Deals to Kharkov. Book Your Flights Today! Award Winning Service. Last Minute Travel. We Make it Easy to Travel. Enjoy Huge Discounts. Book 600+ Airlines.",
"breadcrumb": "www.cheapoair.com/Flights/to_Kharkov",
"url": "https://www.cheapoair.com/flights/booknow/cheap-flight-tickets",
"highlighted": [
"Flights",
"Kharkov"
],
"extra": {
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABAAGgJjZQ"
},
"description_rows": null,
"links": [
{
"type": "ad_link_element",
"title": "Flights $99 and Under",
"url": "https://www.cheapoair.com/flights/booknow/flights-under-99",
"description": "Grab Flight Deals Under $99 Today!Book Tickets Now on CheapOair®.",
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABABGgJjZQ"
},
{
"type": "ad_link_element",
"title": "Top 25 Flight Deals",
"url": "https://www.cheapoair.com/flights/booknow/top-deals",
"description": "Get Our Best Deal on Top Cities.100% Safe Shopping Guarantee!",
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABACGgJjZQ"
}
],
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
},
{
"type": "google_reviews",
"rank_group": 1,
"rank_absolute": 15,
"position": "right",
"xpath": "/#document",
"reviews_count": 9031,
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 803,
"rating_max": 5
},
"place_id": "ChIJBVXQG_CgJ0ERON-jp0YRZE0",
"feature": "0x4127a0f01bd05505:0x4d641146a7a3df38",
"cid": "16568475418893539593"
},
{
"type": "google_posts",
"rank_group": 1,
"rank_absolute": 3,
"position": "right",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[10]",
"posts_id": "lph_fdxNX-CFCsHVkwWz962wCw154",
"feature": "0x88db403dfe9c2975:0xb5297332e0c33afb",
"cid": "13054091657266543355"
},
{
"type": "google_flights",
"rank_group": 1,
"rank_absolute": 15,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]",
"title": "Flights from Kharkiv (HRK) to Lviv (LWO)",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhopEgoyMDE5LTExLTE0ag0IAhIJL20vMDgyc3k5cgwIAhIIL20vMGQ3X24aKRIKMjAxOS0xMS0xN2oMCAISCC9tLzBkN19ucg0IAhIJL20vMDgyc3k5ekBDaWRIZVRZNWQwSkhMUzB0TFMwdExTMHRZMlZ4YmpJMlFVRkJRVUZHTTBaUVRVVkVkMGhLUVVFU0EyNVFVUT09&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8QuRUwAHoECGIQAw",
"items": [
{
"type": "google_flights_element",
"description": "SkyUp 1h 50m Non-stop from UAH 1,944 ",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJQUWoNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAlBRagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoADAAegQIYhAQ"
},
{
"type": "google_flights_element",
"description": "LOT 7h 5m+ Connecting from UAH 52,388 ",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJMT2oNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAkxPagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoATAAegQIYhAR"
},
{
"type": "google_flights_element",
"description": "Ukraine International 3h 20m+ Connecting check price ",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJQU2oNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAlBTagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoAjAAegQIYhAS"
}
]
},
{
"type": "people_also_ask",
"rank_group": 1,
"rank_absolute": 17,
"position": "left",
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]",
"items": [
{
"type": "people_also_ask_element",
"title": "What is the best texting app?",
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]/div[1]/div[1]/div[1]",
"expanded_element": [
{
"type": "people_also_ask_expanded_element",
"featured_title": null,
"url": "https://www.xda-developers.com/best-text-messaging-apps-android/",
"domain": "www.xda-developers.com",
"title": "Best Text Messaging Apps for Android - XDA Developers",
"description": "Best Text Messaging Apps for AndroidAndroid Messages (Top Choice) The good news for a lot of people is the best text messaging app is probably already on your phone. ... Chomp SMS. Chomp SMS is an old classic and it's still one of the best messaging apps. ... EvolveSMS. ... Facebook Messenger. ... Handcent Next SMS. ... Mood Messenger. ... Pulse SMS. ... QKSMS.More items...",
"timestamp": "2020-09-11 14:42:55 +00:00",
"table": null
}
]
},
{
"type": "people_also_ask_element",
"title": "What is the best free texting app?",
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]/div[1]/div[1]/div[2]",
"expanded_element": [
{
"type": "people_also_ask_expanded_element",
"featured_title": null,
"url": "https://www.androidauthority.com/best-free-text-apps-android-937389/",
"domain": "www.androidauthority.com",
"title": "5 free text apps for Android that send real SMS messages! (Updated ...",
"description": "Google Voice is an excellent free texting app and easily one of the most popular. It lets you send free SMS messages and make free phone calls in the U.S. or Canada.2 May 2019",
"timestamp": "2020-09-11 14:42:55 +00:00",
"table": null
}
]
}
]
},
{
"type": "images",
"rank_group": 1,
"rank_absolute": 69,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[66]/div[1]/div[2]",
"title": "Images for google pixel 5",
"url": "https://www.google.com/search?num=100&safe=strict&source=univ&tbm=isch&q=google+pixel+5&gl=US&hl=en&sa=X&ved=2ahUKEwjj38uSm7PxAhUzhuYKHeUsDncQjJkEegQIMxAC",
"items": [
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://www.amazon.com/Google-Pixel-Resistant-Smartphone-Ultrawide/dp/B08H8X23ZB",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSG-CP4bWXtOqg-HgdQ8O6eDq93H49ThLZXfz8e7BLlVw&s"
},
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://store.google.com/product/pixel_5",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQXHy0fH_sPtwzA6HBYjCYVa9qjmNdPyikdHcpQJ-2Y&s"
},
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://www.bestbuy.com/site/google-pixel-5-5g-128gb-unlocked-just-black/6431992.p?skuId=6431992",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcROhijfKW7EITaKaSa3vJiagrvp4v8e6W2YgvtedZGU&s"
},
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://www.gsmarena.com/google_pixel_5-10386.php",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRjnRvSpLnfyKzxMH5gQzMAVRYwRvbyqWFreOz7TU_r&s"
}
],
"related_image_searches": [
{
"type": "related_image_searches_element",
"title": "desktop",
"alt": null,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:desktop:GhRwno6xyAk%3D&usg=AI4_-kRZZbrJkRKpY-dI4XnJZmHIj9tomg&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAR6BAgTEBo",
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:23"
},
{
"type": "related_image_searches_element",
"title": "nature",
"alt": null,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:nature:QFotJTE5uJk%3D&usg=AI4_-kT9GMRWruVX-G44OLrYUJeJSSYP-g&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAV6BAgTEB4",
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:24"
},
{
"type": "related_image_searches_element",
"title": "lock screen",
"alt": null,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:lock+screen:D2QY-VvDcCE%3D&usg=AI4_-kTJhC34RX6VCIJGcKVM1xOgzbG04Q&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAd6BAgTECY",
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:26"
}
]
},
{
"type": "shopping",
"rank_group": 1,
"rank_absolute": 19,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]",
"title": "See buy treadmill",
"items": [
{
"type": "shopping_element",
"title": "NordicTrack Commercial 1750 Treadmill",
"price": {
"current": 1799,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$1,799.00"
},
"source": "NordicTrack",
"description": null,
"marketplace": null,
"marketplace_url": null,
"url": "https://www.nordictrack.com/treadmills/commercial-1750-treadmill"
},
{
"type": "shopping_element",
"title": "7.0AT Studio Treadmill by Horizon. Powerful Motor, Folding Treadmill.",
"price": {
"current": 999,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$999.00"
},
"source": "Horizon Fitness",
"description": null,
"marketplace": null,
"marketplace_url": null,
"url": "https://www.horizonfitness.com/horizon-7-0-at-treadmill"
},
{
"type": "shopping_element",
"title": "NordicTrack Commercial X32i Incline Treadmill Series",
"price": {
"current": 3799,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$3,799.00"
},
"source": "NordicTrack",
"description": null,
"marketplace": null,
"marketplace_url": null,
"url": "https://www.nordictrack.com/incline-trainers/commercial-x32i"
}
]
},
{
"type": "jobs",
"rank_group": 1,
"rank_absolute": 20,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/g-card[1]/div[1]/div[1]",
"title": "Jobs Near New York, NY",
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs&sa=X&ved=2ahUKEwiV1J_Gl4jmAhUiAmMBHY6HA-wQiYsCKAB6BAgSEAM",
"items": [
{
"type": "jobs_element",
"title": "SEO Lead",
"description": "Grailed\nNew York, NY",
"author": "via Built In NYC",
"job_posted_time": "Over 1 month ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"contract_type": "Full-time",
"salary": null,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=sva_zVrSNMbg3Qx4AAAAAA%3D%3D"
},
{
"type": "jobs_element",
"title": "SEO Manager",
"description": "New York Post\nNew York, NY",
"author": "via LinkedIn",
"job_posted_time": "Over 1 month ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"contract_type": "Full-time",
"salary": null,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=7an02v1tOj4sF2QdAAAAAA%3D%3D"
},
{
"type": "jobs_element",
"title": "Assistant Director, Search Engine Optimization",
"description": "Hospital for Special Surgery\nNew York, NY",
"author": "via LinkedIn",
"job_posted_time": "4 days ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"contract_type": "Full-time",
"salary": null,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=gSWuAZR4HsDT0uhtAAAAAA%3D%3D"
}
]
},
{
"type": "events",
"rank_group": 1,
"rank_absolute": 21,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/g-card[1]/div[1]/div[1]",
"title": "Eventos",
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn",
"items": [
{
"type": "events_element",
"title": "Metallica Tribute Show",
"snippet": "sáb., 19:00\nPrague Congress Centre, 5. května 1640/65\nPrague 4-Nusle, Tchéquia",
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn&sa=X&ved=2ahUKEwiXxsSc6MbnAhVmKLkGHTuZASQQ5bwDMAB6BAgPEAE#fpstate=tldetail&htidocid=wHvEAt0DuBX7XOr6JpA8-A%3D%3D&htivrt=events"
},
{
"type": "events_element",
"title": "Maluma Official Afterparty - Prague",
"snippet": "qui., 27 – sex., 28 de fev.\nDupleX, The Rooftop Venue, Václavské nám. 831/21\nNew Town, Tchéquia",
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn&sa=X&ved=2ahUKEwiXxsSc6MbnAhVmKLkGHTuZASQQ5bwDMAF6BAgQEAE#fpstate=tldetail&htidocid=H6X_mJy9t1p7DU8JJpA8-A%3D%3D&htivrt=events"
}
]
},
{
"type": "mention_carousel",
"rank_group": 1,
"rank_absolute": 22,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/g-card[1]",
"title": "Top 16 IP Surveillance Cameras",
"items": [
{
"type": "mention_carousel_element",
"title": "NordicTrack Commercial 1750",
"price": {
"current": 1700,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$1,700+"
},
"rating": {
"rating_type": "Max5",
"value": 4.1,
"votes_count": 46,
"rating_max": 5
},
"mentioned_in": [
{
"type": "link_element",
"title": "NordicTrack Commercial 1750 Review 2021",
"snippet": "The NordicTrack Commercial 1750 is a reliable, high-quality treadmill that will more than satisfy users.",
"url": "https://www.fitrated.com/treadmills/nordictrack-commercial-1750-treadmill-review/#:~:text=The%20NordicTrack%20Commercial%201750,more%20than%20satisfy%20users."
},
{
"type": "link_element",
"title": "Expert ReviewsBest home security camera 2020: The best IP security cameras to protect your home",
"snippet": null,
"url": "https://www.expertreviews.co.uk/ip-cameras/1405720/best-home-security-cameras-best-ip-security-camera-to-buy"
}
]
},
{
"type": "mention_carousel_element",
"title": "Nest Cam Outdoor",
"price": {
"current": 160,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$160+"
},
"rating": {
"rating_type": "Max5",
"value": 4.6,
"votes_count": 6618,
"rating_max": 5
},
"mentioned_in": [
{
"type": "link_element",
"title": "Nest Cam Outdoor Review",
"snippet": null,
"url": "https://www.trustedreviews.com/reviews/nest-cam-outdoor"
},
{
"type": "link_element",
"title": "TechRadarBest security camera system for your business in 2020",
"snippet": null,
"url": "https://www.techradar.com/best/best-office-security-camera-systems"
}
]
}
]
},
{
"type": "recipes",
"rank_group": 1,
"rank_absolute": 23,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"items": [
{
"type": "recipes_element",
"title": "Homemade Pizza",
"url": "https://www.simplyrecipes.com/recipes/homemade_pizza/",
"domain": "www.simplyrecipes.com",
"source": "Simply Recipes",
"description": "Italian sausage, pesto, feta cheese, bell peppers, tomato sauce",
"time": "2 hr 30 min",
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 285,
"rating_max": 5
}
},
{
"type": "recipes_element",
"title": "How To Make The Best Homemade Pizza Recipe by Tasty",
"url": "https://tasty.co/recipe/pizza-dough",
"domain": "tasty.co",
"source": "Tasty",
"description": "Ricotta cheese, tomato sauce, fresh basil pesto, fresh mozzarella cheese, semolina flour",
"time": null,
"rating": {
"rating_type": "Max5",
"value": 4.9,
"votes_count": 2,
"rating_max": 5
}
}
]
},
{
"type": "top_sights",
"rank_group": 1,
"rank_absolute": 24,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"title": "Top sights in Pittsburgh",
"items": [
{
"type": "top_sights_element",
"title": "Phipps Conservatory and Botanical Gardens4.8(6,300)Botanical gardens & Victorian greenhouse",
"url": "https://www.google.com/travel/things-to-do/see-all?g2lb=2502548,4258168,4270442,4306835,4317915,4322823,4328159,4371335,4401769,4403882,4419364,4424916,4425793,4428791,4432151,4432284,4270859,4284970,4291517,4412693&hl=en&gl=us&un=1&dest_mid=/m/068p2&dest_state_type=sattd&dest_src=ts&poi_mid=/m/077lw0&sa=X&ved=2ahUKEwij75zu5NnrAhURqXEKHUGZBbIQ69EBKAAwAHoECAoQKQ",
"description": "Botanical gardens & Victorian greenhouse",
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 6300,
"rating_max": 5
}
},
{
"type": "top_sights_element",
"title": "The Andy Warhol Museum4.6(2,958)Warhol's works & the art he inspired",
"url": "https://www.google.com/travel/things-to-do/see-all?g2lb=2502548,4258168,4270442,4306835,4317915,4322823,4328159,4371335,4401769,4403882,4419364,4424916,4425793,4428791,4432151,4432284,4270859,4284970,4291517,4412693&hl=en&gl=us&un=1&dest_mid=/m/068p2&dest_state_type=sattd&dest_src=ts&poi_mid=/m/04n7k0b&sa=X&ved=2ahUKEwij75zu5NnrAhURqXEKHUGZBbIQ69EBKAEwAHoECAoQKw",
"description": "Warhol's works & the art he inspired",
"rating": {
"rating_type": "Max5",
"value": 4.6,
"votes_count": 2958,
"rating_max": 5
}
}
]
},
{
"type": "scholarly_articles",
"rank_group": 1,
"rank_absolute": 25,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]",
"title": "Scholarly articles for medicine articles",
"url": "http://scholar.google.com/scholar?q=medicine+articles&hl=en&as_sdt=0&as_vis=1&oi=scholart",
"items": [
{
"type": "scholarly_articles_element",
"title": "… for publication in the Journal of Translational Medicine",
"url": "http://scholar.google.com/scholar_url?url=https://link.springer.com/article/10.1186/1479-5876-1-11&hl=en&sa=X&scisig=AAGBfm1WejtZnVCZsU3tzRdZElwwQaLqXw&nossl=1&oi=scholarr",
"author": "Marincola",
"description": "- Cited by 462"
},
{
"type": "scholarly_articles_element",
"title": "… in medicine -a review with quality grading of articles",
"url": "http://scholar.google.com/scholar_url?url=https://www.tandfonline.com/doi/abs/10.1080/01421599978979&hl=en&sa=X&scisig=AAGBfm2PM9wHLayDqCeL96xg-_gXFGKXMw&nossl=1&oi=scholarr",
"author": "Aspegren",
"description": "- Cited by 612"
}
]
},
{
"type": "popular_products",
"rank_group": 1,
"rank_absolute": 26,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]",
"items": [
{
"type": "popular_products_element",
"title": "Philips Hue Sensor One",
"description": null,
"price": {
"current": 44,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$44+"
},
"rating": {
"rating_type": "Max5",
"value": 4.7,
"votes_count": 996,
"rating_max": 5
}
},
{
"type": "popular_products_element",
"title": "Aeon Labs AEOEZW100 White multimedia motion sensor Hardware/Electronic",
"description": null,
"price": {
"current": 59,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$59+"
},
"rating": {
"rating_type": "Max5",
"value": 4.4,
"votes_count": 105,
"rating_max": 5
}
}
]
},
{
"type": "podcasts",
"rank_group": 1,
"rank_absolute": 27,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]",
"items": [
{
"type": "podcasts_element",
"title": "Fresh Air",
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5ucHIub3JnLzM4MTQ0NDkwOC9wb2RjYXN0LnhtbA/episode/MWQ3Yzk2MDgtNDgzMy00ZTI2LTlhYTEtNjQ0NTY1ZTA4Yjcx",
"description": "Celebrating Sonny Rollins / Octavia Spencer",
"timestamp": "2020-09-13 22:42:55 +00:00",
"time_to_play": "49m"
},
{
"type": "podcasts_element",
"title": "Fresh Air",
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5ucHIub3JnLzM4MTQ0NDkwOC9wb2RjYXN0LnhtbA/episode/NzdhMDYyODQtZmU3ZS00OWNmLThiYjgtODczN2IxMjEyY2Ez",
"description": "Best Of: Cherry Jones / The Early Years Of The CIA",
"timestamp": "2020-09-11 14:42:55 +00:00",
"time_to_play": "50m"
}
]
},
{
"type": "questions_and_answers",
"rank_group": 1,
"rank_absolute": 27,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"items": [
{
"type": "questions_and_answers_element",
"url": "https://www.sarthaks.com/8816/predict-the-products-of-electrolysis-in-each-of-the-following",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "Answer: We have\n\n(i) AgNO3 ionizes in aqueous solutions to form Ag+ and NO3- ions.\n\nOn electrolysis, either Ag+ ions or H2O molecules can be reduced ...",
"source": "Sarthaks eConnect",
"domain": "www.sarthaks.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://brainly.in/question/17093922",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "Answer:7/8mg magnesium hope it helps",
"source": "Brainly.in",
"domain": "brainly.in",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://www.meritnation.com/ask-answer/question/predict-the-product-of-electrolysis-in-each-of-the-following/electrochemistry/11575355",
"question_text": "Predict the product of electrolysis in each of the following",
"answer_text": "Dear Student\n\nKindly refer to the link for similar query -\n\nhttps://www meritnation\ncom/ask-answer/q ...",
"source": "Meritnation",
"domain": "www.meritnation.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://www.toppr.com/en-us/ask/question/predict-the-products-of-electrolysis-in-each-of-the-followingi-an-aqueous-solution-of-agno3/",
"question_text": "Predict the products of electrolysis",
"answer_text": "(i) An aqueous solution of AgNO3 with silver electrodes.At cathode: Silver ions have lower discharge potential than hydrogen ions. Hence, silver ions ...",
"source": "Toppr",
"domain": "www.toppr.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://www.toppr.com/ask/question/predict-the-products-of-electrolysis-in-each-of-the-followingan-aqueous-solution-of-cucl2with-platinum/",
"question_text": "Predict the products of electrolysis",
"answer_text": "When an aqueous solution of CuCl2 is electrolyzed with platinum electrodes, chlorine is obtained at anode and Cu is deposited at cathode. 2Cl - → Cl2 ...",
"source": "Toppr",
"domain": "www.toppr.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://brainly.in/question/2161527",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "(i) an aqueous solution of AgNO3 with silver electrode.here two oxidation and two reduction half reactions must be considered .now, oxidation (at anode ...",
"source": "Brainly.in",
"domain": "brainly.in",
"votes": 18
},
{
"type": "questions_and_answers_element",
"url": "https://learn.careers360.com/ncert/question-predict-the-product-of-electrolysis-in-each-of-the-following-an-aqueous-solution-of-cucl2-with-platinum-electrodes/",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "342",
"source": "Careers360",
"domain": "learn.careers360.com",
"votes": 1
},
{
"type": "questions_and_answers_element",
"url": "https://learn.careers360.com/ncert/question-predict-the-products-of-electrolysis-in-each-of-the-following-a-dilute-solution-of-h2so4-with-platinum-electrodes/",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "135",
"source": "Careers360",
"domain": "learn.careers360.com",
"votes": 1
}
]
},
{
"type": "find_results_on",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"items": [
{
"type": "find_results_on_element",
"title": "Electrical service and electrician in London",
"domain": "www.gumtree.com",
"url": "https://www.gumtree.com/electrical-services/london",
"source": "Gumtree"
},
{
"type": "find_results_on_element",
"title": "Electricians near London | Get a Quote",
"domain": "www.yell.com",
"url": "https://www.yell.com/s/electricians-london.html",
"source": "Yell"
}
]
},
{
"type": "stocks_box",
"rank_group": 1,
"rank_absolute": 28,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"title": "Market Summary > Tesla Inc",
"source": "NASDAQ: TSLA",
"snippet": "Pre-market After hours 409.25 +3.23 (0.80%)",
"price": {
"current": 579.21,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "579.21 USD"
},
"url": "https://www.google.com/finance?num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&sa=X&ved=2ahUKEwjvzarM89nsAhXs73MBHaYZCH4Q6M8CMAB6BAgCEAQ",
"domain": "www.google.com",
"table": {
"table_header": null,
"table_content": [
[
"Mkt cap",
"384.87B"
],
[
"P/E ratio",
"804.45"
],
[
"Div yield",
"-"
],
[
"Prev close",
"406.02"
],
[
"52-wk high",
"502.49"
],
[
"52-wk low",
"61.85"
]
]
},
"graph": {
"items": [
{
"type": "graph_element",
"date": "2020-10-28T15:40:00",
"value": 409.04
},
{
"type": "graph_element",
"date": "2020-10-28T15:45:00",
"value": 409.23
},
{
"type": "graph_element",
"date": "2020-10-28T15:50:00",
"value": 408.05
},
{
"type": "graph_element",
"date": "2020-10-28T15:55:00",
"value": 407.19
},
{
"type": "graph_element",
"date": "2020-10-28T16:00:00",
"value": 406.02
}
],
"previous_items": [
{
"type": "graph_element",
"date": "2020-10-28T16:00:00",
"value": 406.02
},
{
"type": "graph_element",
"date": "2020-10-28T16:05:00",
"value": 406.73
},
{
"type": "graph_element",
"date": "2020-10-28T16:10:00",
"value": 406.7
},
{
"type": "graph_element",
"date": "2020-10-28T16:15:00",
"value": 405.11
},
{
"type": "graph_element",
"date": "2020-10-28T16:20:00",
"value": 405.2
}
]
}
},
{
"type": "visual_stories",
"rank_group": 1,
"rank_absolute": 29,
"position": "left",
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[3]/div[1]/g-card[1]",
"items": [
{
"type": "visual_stories_element",
"title": "Best Things To Do in New York City – U.S. News & World Report",
"url": "https://travel.usnews.com/ampstories/newyorkcity",
"domain": "travel.usnews.com"
},
{
"type": "visual_stories_element",
"title": "Best things to do on New York City's Roosevelt Island",
"url": "https://www.cnn.com/ampstories/travel/best-things-to-do-on-new-york-citys-roosevelt-island",
"domain": "www.cnn.com"
},
{
"type": "visual_stories_element",
"title": "Things To Do In New York City",
"url": "https://livetheadventure.club/stories/things-to-do-in-new-york-city",
"domain": "livetheadventure.club"
},
{
"type": "visual_stories_element",
"title": "A local’s guide to what to eat and do in New York City",
"url": "https://www.washingtonpost.com/graphics/2019/lifestyle/travel/amp-stories/a-locals-guide-to-what-to-eat-and-do-in-new-york-city/",
"domain": "www.washingtonpost.com"
}
]
},
{
"type": "commercial_units",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[1]/div[2]/div[1]/div[1]/div[1]",
"title": "Tickets & tours",
"items": [
{
"type": "commercial_units_element",
"title": "9/11 Memorial at World Trade Center and Financial District Walking Tour",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 43,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$43"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 9,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Brooklyn: 2-Hour Manhattan & Brooklyn Bridges Bike Tour",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 46,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$46"
},
"source": "GetYourGuide",
"rating": {
"rating_type": "Max5",
"value": 4.5,
"votes_count": 18,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Private Carriage Ride in Central Park",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 85,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$85"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 4.5,
"votes_count": 28,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Statue of Liberty Sail On The Classic Schooner Shearwater",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 45,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$45"
},
"source": "GetYourGuide",
"rating": {
"rating_type": "Max5",
"value": 4.5,
"votes_count": 17,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Romantic Central Park Horse-Drawn Carriage Tour",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 287,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$287"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 1,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "New York in One Day Guided Sightseeing Tour",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 89,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$89"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 2000,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "NYC: Statue of Liberty, Ellis Island, 911 & Cruise Pass",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 100,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$100"
},
"source": "GetYourGuide",
"rating": null
},
{
"type": "commercial_units_element",
"title": "NYC Ground Zero: Family Tour with Ticket for 9/11 Museum",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 479,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$479"
},
"source": "GetYourGuide",
"rating": null
}
]
},
{
"type": "local_services",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]",
"title": "GOOGLE SCREENED|Personal Injury Lawyers nearby",
"url": "https://www.google.com/search?q=san+diego+personal+injury+lawyer&num=100&hl=en&gl=US&sabvi=Cjd4Y2F0OnNlcnZpY2VfYXJlYV9idXNpbmVzc19wZXJzb25hbF9pbmp1cnlfbGF3eWVyOmVuLVVT&sab=ChMIg4jfgciM8AIVgs3ICh2edA8hEhYIBBAAGgwIuPqdkwIQy8fIugkgACoAEhYIBBAAGgwIrrX5rAIQvua_vgkgACoAEhUIBBAAGgsIpf3TGhCzlK66CSAAKgAYyJDJqawNGJL3h-_3DBiDyr60uQ0",
"domain": "www.google.com",
"items": [
{
"type": "local_services_element",
"title": "i Accident Lawyer",
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChIIuPqdkwIQy8fIugkY_8evoCUSN3hjYXQ6c2VydmljZV9hcmVhX2J1c2luZXNzX3BlcnNvbmFsX2luanVyeV9sYXd5ZXI6ZW4tVVMahAEvYWNsaz9zYT1MJmFpPURDaGNTRXdpRGlOLUJ5SXp3QWhXQ3pjZ0tIWjUwRHlFWUFCQVFHZ0p4ZFEmbGFiZWw9Z2xzX21lc3NhZ2VfY2xpY2tfZnJlZSZzaWc9QU9ENjRfMEZYY0pXVkEwZ0xxNTczbU50VFg0UGt1MlV0dyZhZHVybD0ify9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBS0dnSnhkUSZsYWJlbD1wcm9maWxlX3ZpZXdfZnJlZSZzaWc9QU9ENjRfMFotTjRyb0JaS01aQUgwdTdHclNqS2ZfSTdSQSZhZHVybD0qfi9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBT0dnSnhkUSZsYWJlbD1jYWxsX2J1dHRvbl9mcmVlJnNpZz1BT0Q2NF8yVVVLQ3dpTk9ueDk1MzVoaU1EY0VEZGFocENRJmFkdXJsPTKBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBR0dnSnhkUSZsYWJlbD1nbHNfY2FsbF9jbGlja19mcmVlJnNpZz1BT0Q2NF8wQlBNZzBSaG9PVjNlTm42MTFORE0teW54ekFRJmFkdXJsPTqBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBVEdnSnhkUSZsYWJlbD1nbHNfYm9va19jbGlja19mcmVlJnNpZz1BT0Q2NF8xd1VmQVlfd3p5LVhSUzJQVHEwblhwVnFValJnJmFkdXJsPUITCIOI34HIjPACFYLNyAodnnQPIUgEUAE",
"domain": "www.google.com",
"description": "20 years in business",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 302,
"rating_max": 5
},
"profile_image_url": "https://lh3.googleusercontent.com/uzK7ihdygT9vLtKkhg387zYt2F1YKSXruQGteu8qcwrQuihexS3-B-KmgwWhh2w=fcrop64=1,5a1713919eba8d98"
},
{
"type": "local_services_element",
"title": "Hamparyan Personal Injury Lawyers, San Diego APC",
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChIIrrX5rAIQvua_vgkY_8evoCUSN3hjYXQ6c2VydmljZV9hcmVhX2J1c2luZXNzX3BlcnNvbmFsX2luanVyeV9sYXd5ZXI6ZW4tVVMahAEvYWNsaz9zYT1MJmFpPURDaGNTRXdpRGlOLUJ5SXp3QWhXQ3pjZ0tIWjUwRHlFWUFCQVJHZ0p4ZFEmbGFiZWw9Z2xzX21lc3NhZ2VfY2xpY2tfZnJlZSZzaWc9QU9ENjRfMWVRbGlWTGdUSU1KbGo5UThNUk9EdzJ4bEhlQSZhZHVybD0ify9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBSkdnSnhkUSZsYWJlbD1wcm9maWxlX3ZpZXdfZnJlZSZzaWc9QU9ENjRfMWwta3p0X0JRY0JOQ0FSdDlwTEFTMlJwVHRuUSZhZHVybD0qfi9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBTkdnSnhkUSZsYWJlbD1jYWxsX2J1dHRvbl9mcmVlJnNpZz1BT0Q2NF8yN3czUzZBMGZCVGJLYk1Zc1JIbldHR2p0NnlBJmFkdXJsPTKBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBRkdnSnhkUSZsYWJlbD1nbHNfY2FsbF9jbGlja19mcmVlJnNpZz1BT0Q2NF8yU2Q0dzNfV3V0NmxpTnV5THI1VjNlZTBpd2FBJmFkdXJsPTqBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBVkdnSnhkUSZsYWJlbD1nbHNfYm9va19jbGlja19mcmVlJnNpZz1BT0Q2NF8yUm1jUDZxS3ZoV3F1UkFJdkhMSllXbGRxaUR3JmFkdXJsPUITCIOI34HIjPACFYLNyAodnnQPIUgEUAI",
"domain": "www.google.com",
"description": "9 years in business",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 62,
"rating_max": 5
},
"profile_image_url": "https://lh3.googleusercontent.com/GKIL8cPY1NGPlxycDLvn7r7362_MqHFIgUQLvFTQW8sWAJx6InAscqv4sfWQ8Q=fcrop64=1,3e2300babb62bc82"
},
{
"type": "local_services_element",
"title": "Pines Salomon Injury Lawyers, APC",
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChEIpf3TGhCzlK66CRj_x6-gJRI3eGNhdDpzZXJ2aWNlX2FyZWFfYnVzaW5lc3NfcGVyc29uYWxfaW5qdXJ5X2xhd3llcjplbi1VUxqEAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBU0dnSnhkUSZsYWJlbD1nbHNfbWVzc2FnZV9jbGlja19mcmVlJnNpZz1BT0Q2NF8ydTdPWWo0dmg3SC14NmN5U0NwT3RfVGhJYlNRJmFkdXJsPSJ_L2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFJR2dKeGRRJmxhYmVsPXByb2ZpbGVfdmlld19mcmVlJnNpZz1BT0Q2NF8waXo4WkQ0aHZaUnNlZy00cmI4d2xVUlhfbmFRJmFkdXJsPSp-L2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFNR2dKeGRRJmxhYmVsPWNhbGxfYnV0dG9uX2ZyZWUmc2lnPUFPRDY0XzBwQVdBWGhqMHVIVUctR04zZVpucy05enVtZmcmYWR1cmw9MoEBL2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFFR2dKeGRRJmxhYmVsPWdsc19jYWxsX2NsaWNrX2ZyZWUmc2lnPUFPRDY0XzJhRGcyT2hEMDBfYU05eFphbTQ2aEVsWmNrOUEmYWR1cmw9OoEBL2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFVR2dKeGRRJmxhYmVsPWdsc19ib29rX2NsaWNrX2ZyZWUmc2lnPUFPRDY0XzBpS2wxaHhUMFhMOHpNV2RhNGwzM3U2anR3aEEmYWR1cmw9QhMIg4jfgciM8AIVgs3ICh2edA8hSARQAw",
"domain": "www.google.com",
"description": "29 years in business",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 213,
"rating_max": 5
},
"profile_image_url": "https://lh3.googleusercontent.com/PMP8ZawJe51VdRcJzKfSDcQXxmoviIp4VA7aCFr_Z5AmP2yJu3JEE1UGKw5fxw=fcrop64=1,249200a8ecf2aa4f"
}
]
},
{
"type": "google_hotels",
"rank_group": 1,
"rank_absolute": 1,
"position": "right",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[8]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[4]/div[1]/div[1]/a[1]",
"hotel_identifier": "CgsI4srPluaypZuVARAB",
"url": "https://google.com/travel/hotels/entity/CgsI4srPluaypZuVARAB"
}
]
},
{
"keyword": "albert einstein",
"type": "organic",
"se_domain": "google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://www.google.com/search?q=car%20insurance&num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc",
"datetime": "2021-10-01 03:37:47 +00:00",
"spell": null,
"item_types": [
"paid",
"organic",
"local_pack",
"people_also_ask",
"top_stories",
"related_searches",
"multi_carousel"
],
"se_results_count": 2070000000,
"items_count": 106,
"items": [
{
"type": "paid",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]",
"title": "Car Insurance - Get a Fast Free Quote Online",
"domain": "www.statefarm.com",
"description": "Get a Free Quote Online and See How Much You Can Save with State Farm. Save with Our Surprisingly Great Rates on Car Insurance. Get a Quote! Save up to 40% Local agents.",
"breadcrumb": "https://www.statefarm.com/",
"url": "https://www.statefarm.com/quote-start",
"highlighted": [
"Car Insurance"
],
"extra": {
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABAAGgJscg"
},
"description_rows": null,
"links": [
{
"type": "ad_link_element",
"title": "Switch And Save",
"description": null,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABABGgJscg",
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABABGgJscg"
},
{
"type": "ad_link_element",
"title": "Free Quick Auto Quote",
"description": null,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABACGgJscg",
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABACGgJscg"
},
{
"type": "ad_link_element",
"title": "Find An Agent",
"description": null,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABADGgJscg",
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABADGgJscg"
}
],
"main_domain": "statefarm.com",
"relative_url": "/quote-start",
"etv": 26164.8,
"impressions_etv": 4461.85206,
"estimated_paid_traffic_cost": 2664105.4044432,
"rank_changes": {
"previous_rank_absolute": null,
"is_new": false,
"is_up": false,
"is_down": false
}
}
]
}
]
}
]
}
]
}
{
"version": "0.1.20220216",
"status_code": 20000,
"status_message": "Ok.",
"time": "23.9825 sec.",
"cost": 0.0005,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "02171444-2806-0380-0000-3d1691a4ad1b",
"status_code": 20000,
"status_message": "Ok.",
"time": "23.9043 sec.",
"cost": 0.0005,
"result_count": 1,
"path": [
"v3",
"dataforseo_labs",
"historical_serps",
"live"
],
"data": {
"api": "dataforseo_labs",
"function": "historical_serps",
"keyword": "albert einstein",
"language_name": "English",
"location_code": 2840,
"date_from": "2021-08-01",
"date_to": "2021-10-01"
},
"result": [
{
"keyword": "albert einstein",
"location_code": 2840,
"language_code": "en",
"total_count": 5,
"items_count": 5,
"items": [
{
"keyword": "albert einstein",
"type": "organic",
"se_domain": "google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://www.google.com/search?q=albert%20einstein&num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc",
"datetime": "2021-08-01 08:05:11 +00:00",
"spell": null,
"item_types": [
"answer_box",
"carousel",
"multi_carousel",
"featured_snippet",
"google_flights",
"google_reviews",
"google_posts",
"images",
"jobs",
"knowledge_graph",
"local_pack",
"math_solver",
"hotels_pack",
"map",
"organic",
"paid",
"people_also_ask",
"related_searches",
"people_also_search",
"shopping",
"top_stories",
"twitter",
"video",
"events",
"mention_carousel",
"recipes",
"top_sights",
"scholarly_articles",
"popular_products",
"podcasts",
"questions_and_answers",
"find_results_on",
"stocks_box",
"visual_stories",
"commercial_units",
"local_services",
"google_hotels"
],
"se_results_count": 85600000,
"items_count": 96,
"items": [
{
"type": "carousel",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[7]/div[1]",
"title": "Star Wars original trilogy/Cast",
"items": [
{
"type": "carousel_element",
"title": "Carrie Fisher",
"sub_title": "Princess Leia"
},
{
"type": "carousel_element",
"title": "Mark Hamill",
"sub_title": "Luke Skywalker"
},
{
"type": "carousel_element",
"title": "Anthony Daniels",
"sub_title": "C-3PO"
}
]
},
{
"type": "multi_carousel",
"rank_group": 1,
"rank_absolute": 2,
"position": "right",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[5]/div[1]/div[3]/div[1]/div[1]/div[1]/sticky-header[1]/div[2]/div[1]/g-flippy-carousel[1]/div[1]/div[1]/ol[1]/li[1]/span[1]/div[1]/div[1]/div[1]/div[3]/div[8]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]",
"items": [
{
"type": "multi_carousel_element",
"title": "Types of molds",
"multi_carousel_snippets": [
{
"type": "multi_carousel_snippet",
"title": "Aspergillus niger"
},
{
"type": "multi_carousel_snippet",
"title": "Penicillium chrysogen..."
},
{
"type": "multi_carousel_snippet",
"title": "Black bread mold"
},
{
"type": "multi_carousel_snippet",
"title": "Aspergillus oryzae"
},
{
"type": "multi_carousel_snippet",
"title": "Aspergillus flavus"
},
{
"type": "multi_carousel_snippet",
"title": "Penicillium digitatum"
},
{
"type": "multi_carousel_snippet",
"title": "Alternaria alternata"
},
{
"type": "multi_carousel_snippet",
"title": "Cladospor... cladospori..."
}
]
},
{
"type": "multi_carousel_element",
"title": "Fungi species",
"multi_carousel_snippets": [
{
"type": "multi_carousel_snippet",
"title": "Claviceps purpurea"
},
{
"type": "multi_carousel_snippet",
"title": "Botrytis cinerea"
},
{
"type": "multi_carousel_snippet",
"title": "Corn smut"
},
{
"type": "multi_carousel_snippet",
"title": "Splitgill mushroom"
},
{
"type": "multi_carousel_snippet",
"title": "Beauveria bassiana"
},
{
"type": "multi_carousel_snippet",
"title": "Gibberella zeae"
},
{
"type": "multi_carousel_snippet",
"title": "Magnapor... grisea"
},
{
"type": "multi_carousel_snippet",
"title": "Neurospora crassa"
}
]
}
]
},
{
"type": "top_stories",
"rank_group": 1,
"rank_absolute": 3,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/g-section-with-header[1]/div[2]",
"items": [
{
"type": "top_stories_element",
"source": "Sky News",
"domain": "news.sky.com",
"title": "UK takes charge of coalition Gulf mission to protect ships from Iran",
"date": "2 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://news.sky.com/story/uk-takes-charge-of-coalition-gulf-mission-to-protect-ships-from-iran-11921404"
},
{
"type": "top_stories_element",
"source": "The Jerusalem Post",
"domain": "www.jpost.com",
"title": "Iranian factory makes Israeli and American flags to burn",
"date": "6 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.jpost.com/International/Iranian-factory-makes-Israeli-and-American-flags-to-burn-615902"
},
{
"type": "top_stories_element",
"source": "Reuters",
"domain": "www.reuters.com",
"title": "Iranian factory makes U.S. and Israeli flags to burn",
"date": "7 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.reuters.com/article/us-iran-flags/iranian-factory-makes-us-and-israeli-flags-to-burn-idUSKBN1ZT065"
}
]
},
{
"type": "answer_box",
"rank_group": 1,
"rank_absolute": 4,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]",
"text": [
"Which is the best iPhone?",
"Best iPhone: which one should you buy today",
"More items...",
"•",
"Sep 19, 2019",
"iPhone 11. The best Apple iPhone bang for your buck. ...",
"iPhone 11 Pro Max. Big phone, best phone, top price. ...",
"iPhone 8. The newest 4.7-inch iPhone is a phone lots of people still want. ...",
"iPhone 8 Plus. A more affordable, big screen iPhone. ...",
"iPhone XR. ...",
"iPhone SE. ...",
"iPhone XS Max. ...",
"iPhone XS.",
"https://www.techradar.com › news › best-iphone",
"Best iPhone 2019: which Apple phone is the best? | TechRadar",
"Search for:",
"Which is the best iPhone?",
"What is the function of iPhone?",
"The",
"is a smartphone made by Apple that combines a computer, iPod, digital camera and cellular phone into one device with a touchscreen interface. The",
"runs the iOS operating system (OS), and as of 2017, there were 2.2 million apps available for it through the Apple App Store, according to Statista.",
"iPhone",
"iPhone",
"https://searchmobilecomputing.techtarget.com › definition › iPhone"
],
"links": [
{
"type": "link_element",
"title": "More items...",
"description": null,
"url": "https://www.techradar.com/news/best-iphone"
},
{
"type": "link_element",
"title": "Best iPhone 2019: which Apple phone is the best? | TechRadarhttps://www.techradar.com › news › best-iphone",
"description": null,
"url": "https://www.techradar.com/news/best-iphone"
},
{
"type": "link_element",
"title": "Which is the best iPhone?",
"description": null,
"url": "https://www.google.com.ua/search?num=100&hl=en&gl=UA&q=Which+is+the+best+iPhone%3F&sa=X&ved=2ahUKEwie3MvG1tXlAhWIM48KHUHqBvoQzmd6BAhfEA0"
}
]
},
{
"type": "math_solver",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"title": "3x^2-1x^2=50",
"result": "x=5 x=-5",
"items": [
{
"type": "math_solver_element",
"title": "Quadratic formula",
"expanded_element": [
{
"type": "math_solver_expanded_element",
"title": "Combine like terms",
"solution": [
"3x^2-x^2=50",
"2x^2=50"
]
},
{
"type": "math_solver_expanded_element",
"title": "Move terms to the left side",
"solution": [
"2x^2=50",
"2x^2-50=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Common factor",
"solution": [
"2x^2-50=0",
"2(x^2-25)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Divide both sides of the equation by the same term",
"solution": [
"2(x^2-25)=0",
"x^2-25=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Use the quadratic formula",
"solution": [
"x=((-b±sqrt(b^2-4ac))/(2a))",
"Once in standard form, identify a, b, and c from the original equation and plug them into the quadratic formula.",
"x^2-25=0",
"a=1",
"b=0",
"c=-25",
"x=((-0±sqrt(0^2-4×1(-25)))/(2×1))"
]
},
{
"type": "math_solver_expanded_element",
"title": "Simplify",
"solution": [
"x=((±10)/(2))"
]
},
{
"type": "math_solver_expanded_element",
"title": "Separate the equations",
"solution": [
"To solve for the unknown variable, separate into two equations: one with a plus and the other with a minus.",
"x=((10)/(2))",
"x=((-10)/(2))"
]
},
{
"type": "math_solver_expanded_element",
"title": "Solve",
"solution": [
"Rearrange and isolate the variable to find each solution",
"x=5",
"x=-5"
]
}
]
},
{
"type": "math_solver_element",
"title": "Factor",
"expanded_element": [
{
"type": "math_solver_expanded_element",
"title": "Combine like terms",
"solution": [
"3x^2-x^2=50",
"2x^2=50"
]
},
{
"type": "math_solver_expanded_element",
"title": "Move terms to the left side",
"solution": [
"2x^2=50",
"2x^2-50=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Common factor",
"solution": [
"2x^2-50=0",
"2(x^2-25)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Use the sum-product pattern",
"solution": [
"2(x^2-25)=0",
"2(x^2+5x-5x-25)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Common factor from the two pairs",
"solution": [
"2((x^2+5x)+(-5x-25))=0",
"2(x(x+5)-5(x+5))=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Rewrite in factored form",
"solution": [
"2(x(x+5)-5(x+5))=0",
"2(x-5)(x+5)=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Create separate equations",
"solution": [
"2(x-5)(x+5)=0",
"x-5=0 x+5=0"
]
},
{
"type": "math_solver_expanded_element",
"title": "Solve",
"solution": [
"Rearrange and isolate the variable to find each solution",
"x=-5",
"x=5"
]
}
]
}
],
"links": [
{
"type": "link_element",
"title": "Tiger Algebra",
"description": null,
"url": "https://www.tiger-algebra.com/en/solvetext/3x%5E2-x%5E2%3D50/?origin=googlemath"
},
{
"type": "link_element",
"title": "Symbolab",
"description": null,
"url": "https://www.symbolab.com/solver?or=gms&query=3x%5E2-x%5E2%3D50"
},
{
"type": "link_element",
"title": "Mathway",
"description": null,
"url": "https://www.mathway.com/?asciimath=3x%5E2-x%5E2%3D50"
},
{
"type": "link_element",
"title": "Mathforyou",
"description": null,
"url": "https://mathforyou.net/en/online/equation/arbitrary/?e0=3x%5E2-x%5E2%3D50&v0=x&o0=1&from=google"
}
]
},
{
"type": "video",
"rank_group": 1,
"rank_absolute": 5,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[7]/div[1]/g-section-with-header[1]/div[2]",
"items": [
{
"type": "video_element",
"source": "YouTube",
"title": "Google Pixel 4 XL vs. iPhone 11 Pro Max Speed Test",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.youtube.com/watch?v=Osp8K7W3qDY"
},
{
"type": "video_element",
"source": "YouTube",
"title": "iPhone XR vs iPhone 11 - Which Should You Choose?",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.youtube.com/watch?v=BZ5fdNNHVu0"
},
{
"type": "video_element",
"source": "YouTube",
"title": "Why iPhone 11 Is Apple's Least Innovative iPhone Yet",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://www.youtube.com/watch?v=7YyTCa6IMKA"
}
]
},
{
"type": "organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]",
"domain": "dataforseo.com",
"title": "SEO software API. API for agencies. Best SEO data API provider.",
"url": "https://dataforseo.com/",
"breadcrumb": "https://dataforseo.com",
"is_image": false,
"is_video": false,
"is_featured_snippet": false,
"is_malicious": false,
"description": "DataForSEO – the best data provider for SEO-software companies and agencies ... We make our project live because we believe that we're helping companies to fill ...",
"pre_snippet": null,
"extended_snippet": null,
"amp_version": false,
"rating": null,
"highlighted": [
"DataForSEO"
],
"links": [
{
"type": "link_element",
"title": "APIs",
"description": null,
"url": "https://dataforseo.com/apis"
},
{
"type": "link_element",
"title": "DataForSEO Labs API",
"description": null,
"url": "https://dataforseo.com/apis/dataforseo-labs-api"
},
{
"type": "link_element",
"title": "Pricing",
"description": null,
"url": "https://dataforseo.com/pricing"
},
{
"type": "link_element",
"title": "Login",
"description": null,
"url": "https://my.dataforseo.com/login"
},
{
"type": "link_element",
"title": "SERP APIs",
"description": null,
"url": "https://dataforseo.com/apis/serp-api"
}
],
"about_this_result": {
"type": "about_this_result_element",
"url": "https://dataforseo.com/",
"source": null,
"source_info": null,
"source_url": null,
"language": "English",
"location": "the United States",
"search_terms": [
"data",
"seo"
],
"related_terms": null
},
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
},
{
"type": "people_also_search",
"rank_group": 1,
"rank_absolute": 7,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]",
"title": "List of iPhonesView 3+ moreView 3+",
"items": [
"View 3+ moreView 3+",
"iPhone XR",
"Apple iPhone 7 Plus",
"Apple iPhone 8 Plus",
"iPhone 6 Plus",
"iPhone 6s Plus",
"iPhone 5s",
"iPhone SE"
]
},
{
"type": "related_searches",
"rank_group": 1,
"rank_absolute": 8,
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]/div[3]/g-section-with-header[1]/div[2]",
"position": "left",
"items": [
"iphone xr",
"iphone xs",
"iphone 11",
"iphone price",
"iphone 8",
"iphone xs max",
"iphone 11 price",
"iphone xs price"
]
},
{
"type": "map",
"rank_group": 1,
"rank_absolute": 9,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]",
"title": "Nevada United States",
"url": null
},
{
"type": "featured_snippet",
"rank_group": 1,
"rank_absolute": 10,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]",
"domain": "www.rome.net",
"title": "Rome Metro - Lines, hours, fares and Rome metro maps",
"featured_title": null,
"description": "Most important metro stationsCipro - Musei Vaticani: The closest stop to the Vatican Museums and to the Sistine Chapel.Ottaviano - San Pietro: This station is a few minutes' walk from St. Peter's Square and St. Peter's Basilica.Spagna: Very convenient for visiting Piazza di Spagna and Villa Borghese.More items...",
"url": "https://www.rome.net/metro",
"table": {
"table_header": [
"Site",
"Domain",
"Alexa top 100 global websites (As of April 3, 2017)"
],
"table_content": [
[
"Wikipedia",
"wikipedia.org",
"5"
],
[
"Yahoo!",
"yahoo.com",
"6"
],
[
"Reddit",
"reddit.com",
"7"
],
[
"Google India",
"google.co.in",
"8"
]
],
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
}
},
{
"type": "local_pack",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[4]/div[1]/div[1]",
"title": "The Signal Pub",
"description": "0.1 mi · 7 Devonshire Rd \n\nDine-in · Takeaway \n",
"domain": null,
"phone": null,
"url": null,
"is_paid": false,
"rating": {
"rating_type": "Max5",
"value": 4.1,
"votes_count": null,
"rating_max": 5
},
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
},
{
"type": "hotels_pack",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[2]/div[9]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]",
"title": "Places to Stay | New York, NY",
"date_from": "2021-03-13",
"date_to": "2021-03-14",
"items": [
{
"type": "hotels_pack_element",
"price": {
"current": 198,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$198"
},
"title": "DoubleTree by Hilton Hotel New York Times Square West",
"description": "13% off \n",
"hotel_identifier": "CgoIuuav9KbOg9kvEAE",
"domain": "www.google.com",
"url": "https://www.google.com/travel/hotels/New%20York/entity/CgoIuuav9KbOg9kvEAE?g2lb=2502548,2503781,4258168,4270442,4306835,4317915,4328159,4371334,4401769,4419364,4429192,4463666,4464737,4472151,4482194,4482438,4486153,4491350,4495816,4500614,4501241,4509286,4511370,4270859,4284970,4291517&hl=en-US&gl=us&ap=aAE&grf=ErAMCiwIDhIoEiZyJCoiCgcI5Q8QAxgNEgcI5Q8QAxgOIAAwHkDKAkoHCOUPEAMYAhILCCkoAToF0gICCAESCggNKAE6BGoCCAESCggHKAE6BDoCIAESCggCKAE6BBICCAESDAgKEAIoAToEWgIIBhIMCAoQAigBOgRaAggJEgwIChACKAE6BFoCCAgSDAgKEAIoAToEWgIIChIMCAoQAigBOgRaAggCEgwIChACKAE6BFoCCAESDAgKEAIoAToEWgIIAxIMCAoQAigBOgRaAggHEgoIBCgBOgQiAhABEgsIKCgBOgXKAgIIARILCBMoAjoFmgECCAESBAgfKAMaQggKEgYKBFoCCAYSBgoEWgIICRIGCgRaAggIEgYKBFoCCAoSBgoEWgIIAhIGCgRaAggBEgYKBFoCCAMSBgoEWgIIBxoCCAIaAggNGgIIBBoLCBMSBwoFmgECCAEaAggOGkIIBxIOCgw6CgoDCJYBGgNVU0QSDgoMOgoKAwj6ARoDVVNEEg4KDDoKCgMIrAIaA1VTRBIOCgw6CgoDCN4CGgNVU0QaiQkIHxIJCgWCAgIIISACEgsKB4ICBAgIGCEgARILCgeCAgQIVBghIAESCgoGggIDCPABIAESCQoFggICCBIgEhIMCgiCAgUImwEYEiAIEgsKB4ICBAhoGBIgBhILCgeCAgQIaRgSIAESCQoFggICCBQgHBILCgeCAgQIcBgUIAISCwoHggIECB0YFCABEgsKB4ICBAgbGBQgChILCgeCAgQIMBgUIAISCwoHggIECFIYFCAEEgsKB4ICBAhOGBQgAhILCgeCAgQIFxgUIAQSCgoGggIDCJwBIAESCgoGggIDCKECIAISCQoFggICCBwgPhILCgeCAgQIchgcIAESCwoHggIECAcYHCACEgsKB4ICBAhRGBwgCBILCgeCAgQIWBgcIAISCwoHggIECHMYHCAPEgsKB4ICBAhHGBwgDhILCgeCAgQIXxgcIAMSCwoHggIECDYYHCAHEgsKB4ICBAgkGBwgARILCgeCAgQITRgcIAMSDAoIggIFCJ0CGBwgARILCgeCAgQIKRgcIAESCQoFggICCCUgEhILCgeCAgQIdRglIAESDAoIggIFCKACGCUgAhILCgeCAgQIdxglIAISCwoHggIECHgYJSACEgsKB4ICBAh5GCUgBhILCgeCAgQIehglIAESCwoHggIECHYYJSABEgkKBYICAghkIAESCQoFggICCBEgLRILCgeCAgQIKhgRIAQSDAoIggIFCJoCGBEgBBILCgeCAgQIQBgRIAsSCwoHggIECDgYESAQEgsKB4ICBAhXGBEgBBILCgeCAgQIAhgRIAISCwoHggIECH8YESACEgsKB4ICBAgrGBEgARIJCgWCAgIILiBtEgwKCIICBQiAARguIAISCwoHggIECDwYLiAFEgsKB4ICBAg7GC4gAxILCgeCAgQIVhguIBESDAoIggIFCIACGC4gAhILCgeCAgQIOhguIBMSDAoIggIFCIcBGC4gBhILCgeCAgQIGhguIAESCwoHggIECEgYLiABEgsKB4ICBAg9GC4gBxIMCgiCAgUIgQEYLiAEEgwKCIICBQiDARguIAMSCwoHggIECEsYLiAMEgsKB4ICBAgDGC4gARILCgeCAgQIDBguIAUSCwoHggIECFMYLiAGEgsKB4ICBAgoGC4gAxIMCgiCAgUIiQEYLiADEgsKB4ICBAgnGC4gAxIKCgaCAgMIrgEgARINCgmCAgYIswEYrgEgARIKCgaCAgMIqQEgARINCgmCAgYIqwEYqQEgARIKCgaCAgMI4QIgARIMCgiCAgUIYxjhAiABEgkKBYICAghQIAYSCwoHggIECBkYUCABEgsKB4ICBAhMGFAgBRIJCgWCAgIIBCABEgoKBoICAwijASACEg0KCYICBgikARijASACEgkKBYICAgg1ICASCwoHggIECBMYNSAJEgsKB4ICBAgLGDUgCRILCgeCAgQIMRg1IAESCwoHggIECDIYNSAEEgsKB4ICBAhdGDUgAxIMCgiCAgUInAIYNSABEgsKB4ICBAgQGDUgAhILCgeCAgQIRBg1IAMiAiAB&q=place+to+stay+in+new+york&rp=ELrmr_SmzoPZLxDPoIis7IK7xScQqaXNmf6b0YyyARC6we3X-MPQ_vgBOAFAAEgCogEMTmV3IFlvcmssIE5ZwAEDyAEA&ictx=1",
"is_paid": false,
"rating": {
"rating_type": "Max5",
"value": 3.8,
"votes_count": 2995,
"rating_max": 5
}
}
]
},
{
"type": "twitter",
"rank_group": 1,
"rank_absolute": 12,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/g-section-with-header[1]",
"title": null,
"url": null,
"items": [
{
"type": "twitter_element",
"tweet": "pic.twitter.com/z0I7wBs…",
"date": "6 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://twitter.com/realDonaldTrump/status/1192640102943674368"
},
{
"type": "twitter_element",
"tweet": "STATEMENT FROM PRESIDENT DONALD J. TRUMP pic.twitter.com/EktztHf…",
"date": "9 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://twitter.com/realDonaldTrump/status/1192594646691729408"
},
{
"type": "twitter_element",
"tweet": "Stock Market up big today. A New Record. Enjoy!",
"date": "18 hours ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"url": "https://twitter.com/realDonaldTrump/status/1192467617140924417"
}
]
},
{
"type": "knowledge_graph",
"rank_group": 1,
"rank_absolute": 1,
"position": "right",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]",
"title": "Eminem",
"sub_title": "American rapper",
"description": "Marshall Bruce Mathers III, known professionally as Eminem, is an American rapper, songwriter, and record producer. Wikipedia",
"card_id": "/m/01vsgrn",
"url": "http://www.eminem.com/",
"image_url": "https://lh5.googleusercontent.com/p/AF1QipOXJ3a4wLbI0j2Z0UbABhMqxH2-19RwzXty0obc=w120-h160-k-no",
"logo_url": "https://lh6.googleusercontent.com/-faPtDtkXReo/AAAAAAAAAAI/AAAAAAAAAAA/zSDtky4Hnkg/s44-p-k-no-ns-nd/photo.jpg",
"cid": null,
"items": [
{
"type": "knowledge_graph_images_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]",
"link": {
"type": "link_element",
"title": "More images",
"url": "https://www.google.com/search?num=100&source=univ&tbm=isch&q=eminem&gl=US&hl=en&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQiR56BAgjEBI",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/a[1]"
},
"items": [
{
"type": "knowledge_graph_images_element",
"url": "http://google.com/search?tbm=isch&q=Marshall+Mathers",
"domain": "google.com",
"alt": "Image result for eminem",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:0",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]"
},
{
"type": "knowledge_graph_images_element",
"url": "https://www.biography.com/musician/eminem",
"domain": "www.biography.com",
"alt": "Image result for eminem",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:1",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]"
}
]
},
{
"type": "knowledge_graph_description_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]",
"text": "Marshall Bruce Mathers III, known professionally as Eminem, is an American rapper, songwriter, and record producer. Wikipedia",
"links": [
{
"type": "link_element",
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/Eminem",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/span[2]/a[1]"
}
]
},
{
"type": "knowledge_graph_row_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]",
"title": "Born",
"data_attrid": "kc:/people/person:born",
"text": "October 17, 1972 (age 48 years), Saint Joseph, MO",
"links": [
{
"type": "link_element",
"title": "Born",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+born&stick=H4sIAAAAAAAAAOPgE-LSz9U3MCwrTi_K0xLLTrbSL0jNL8hJBVJFxfl5Vkn5RXmLWLlTczPzUnMVQDwAjiIGizQAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQ6BMoADCEAXoECBUQAg",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/span[1]/a[1]"
},
{
"type": "link_element",
"title": "Saint Joseph, MO",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Saint+Joseph,+Missouri&stick=H4sIAAAAAAAAAOPgE-LSz9U3MCwrTi_KU-IEs41NC8y1xLKTrfQLUvMLclKBVFFxfp5VUn5R3iJWseDEzLwSBa_84tSCDB0F38zi4vzSoswdrIwAB8H08E0AAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQmxMoATCEAXoECBUQAw",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/span[2]/a[1]"
}
]
},
{
"type": "knowledge_graph_list_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]",
"title": "Songs",
"data_attrid": "kc:/music/artist:songs",
"link": {
"type": "link_element",
"title": "View 25+ more",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+songs&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU0Jia4llJ1vp55YWZybrJxaVZBaXWBXn56UXL2LlSc3NzEvNVQBzd7AyAgDxd6QwRAAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQMTCJAXoECA8QDQ",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[3]/a[1]"
},
"items": [
{
"type": "knowledge_graph_list_element",
"title": "Lose Yourself",
"subtitle": "8 Mile: Music from and Inspired by the Motion Picture · 2002",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+lose+yourself&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-LRT9c3LDYwLSxMjy_SEvQtLc5MdiwqySwuCckPzs9LX8QqkpqbmZeaq5CTX5yqUJlfWlScmpMGAGgNlUFGAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQri4wiQF6BAgPEAQ",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:20",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]"
},
{
"type": "knowledge_graph_list_element",
"title": "Love the Way You Lie",
"subtitle": "Recovery · 2010",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=eminem+love+the+way+you+lie&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-LRT9c3LDYwLSoyqTDUEvQtLc5MdiwqySwuCckPzs9LX8QqnZqbmZeaq5CTX5aqUJKRqlCeWKlQmV-qkJOZCgDBoMK9TQAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQri4wiQF6BAgPEAc",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:21",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[4]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]"
}
]
},
{
"type": "knowledge_graph_carousel_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]",
"title": "People also search for",
"data_attrid": "kc:/people/person:sideways",
"link": {
"type": "link_element",
"title": "View 15+ more",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Eminem&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU0Jia0llJ1vpF6TmF-SkAqmi4vw8q-LMlNTyxMriRaxsrrmZeam5O1gZATU92aRCAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQzTooATCLAXoECBgQAg",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/a[1]"
},
"items": [
{
"type": "knowledge_graph_carousel_element",
"title": "Hailie Jade",
"subtitle": "Daughter",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Hailie+Jade&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KU-IEsZNSMoxTtPgCUouK8_OCM1NSyxMrixexcnskZuZkpip4Jaak7mBlBABrZrx2OgAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQxA0wiwF6BAgYEAU",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:28",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]"
},
{
"type": "knowledge_graph_carousel_element",
"title": "Kimberly Anne Scott",
"subtitle": "Former spouse",
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=Kimberly+Anne+Scott&stick=H4sIAAAAAAAAAONgFuLSz9U3MCwrTi_KUwKzjZOL84zztPgCUouK8_OCM1NSyxMrixexCntn5ialFuVUKjjm5aUqBCfnl5TsYGUEADMZFYNDAAAA&sa=X&ved=2ahUKEwi7tOX4ivXsAhUswzgGHYjvB5sQxA0wiwF6BAgYEAc",
"domain": "www.google.com",
"image_url": "https://api.dataforseo.com/cdn/i/11091052-1535-0139-0000-8a86b1567f1a:29",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]"
}
]
},
{
"type": "knowledge_graph_part_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]",
"title": "Questions & answers",
"data_attrid": "kc:/local:place qa",
"text": "Questions & answers Ask a question See all questions (7)",
"links": [
{
"type": "link_element",
"title": "Ask a question",
"url": "https://www.google.com/#",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]/div[2]/span[1]/a[1]"
},
{
"type": "link_element",
"title": "See all questions (7)",
"url": "https://www.google.com/#",
"domain": null,
"snippet": null,
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[7]/div[2]/a[1]"
}
]
},
{
"type": "knowledge_graph_expanded_item",
"rank_group": 0,
"rank_absolute": 0,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[9]/div[3]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[8]/div[1]/div[1]",
"title": "Size",
"data_attrid": "okra/answer_panel/Size",
"expanded_element": [
{
"type": "knowledge_graph_expanded_element",
"featured_title": "They say there are only three things in this world you can count on—death, taxes, and that social media sizes that you've committed to memory will change out of the blue....Instagram Image Sizes 2020.",
"url": "https://www.picmonkey.com/blog/size-matters-instagram-photo-sizes-made-easy",
"domain": "www.picmonkey.com",
"title": "Instagram Photo Sizes 2021 | Create Instagram Images | PicMonkey",
"snippet": null,
"table": {
"table_element": "table_element",
"table_header": [
"Social media image type",
"Dimensions in pixels"
],
"table_content": [
[
"Instagram Post",
"1080 x 1080 (1:1 ratio)"
],
[
"Instagram Profile Photo",
"360 x 360"
]
]
}
}
]
}
]
},
{
"type": "knowledge_graph_shopping_item",
"rank_group": 1,
"rank_absolute": 3,
"position": "left",
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[3]/div[1]/div[2]/div[2]/sticky-header[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]",
"title": null,
"data_attrid": null,
"items": [
{
"type": "knowledge_graph_shopping_element",
"title": "Apple",
"url": "https://www.apple.com/us/xc/product/MGHH3?purchaseOption=cp&cid=aos-us-seo-pla",
"domain": "www.apple.com",
"price": {
"current": 979,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$979.00"
},
"source": "Apple",
"snippet": "256 GB storage · Unlocked · Black",
"marketplace": null,
"marketplace_url": null
},
{
"type": "knowledge_graph_shopping_element",
"title": "T-Mobile",
"url": "https://www.t-mobile.com/cell-phone/apple-iphone-12?sku=194252429563",
"domain": "www.t-mobile.com",
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$0.00 now"
},
"source": "T-Mobile",
"snippet": "64 GB storage · T-Mobile · Purple",
"marketplace": null,
"marketplace_url": null
},
{
"type": "knowledge_graph_shopping_element",
"title": "AT&T",
"url": "https://www.att.com/buy/phones/apple-iphone-12-128gb-white.html",
"domain": "www.att.com",
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$0.00 now"
},
"source": "AT&T",
"snippet": "128 GB storage · AT&T · White",
"marketplace": null,
"marketplace_url": null
}
]
},
{
"type": "paid",
"rank_group": 1,
"rank_absolute": 14,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/ol[1]/li[1]",
"title": "Cheap Flights to Kharkov | Book Now & Save on CheapOair®",
"domain": "www.cheapoair.com",
"description": "Our Low Cost Flights Deals to Kharkov. Book Your Flights Today! Award Winning Service. Last Minute Travel. We Make it Easy to Travel. Enjoy Huge Discounts. Book 600+ Airlines.",
"breadcrumb": "www.cheapoair.com/Flights/to_Kharkov",
"url": "https://www.cheapoair.com/flights/booknow/cheap-flight-tickets",
"highlighted": [
"Flights",
"Kharkov"
],
"extra": {
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABAAGgJjZQ"
},
"description_rows": null,
"links": [
{
"type": "ad_link_element",
"title": "Flights $99 and Under",
"url": "https://www.cheapoair.com/flights/booknow/flights-under-99",
"description": "Grab Flight Deals Under $99 Today!Book Tickets Now on CheapOair®.",
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABABGgJjZQ"
},
{
"type": "ad_link_element",
"title": "Top 25 Flight Deals",
"url": "https://www.cheapoair.com/flights/booknow/top-deals",
"description": "Get Our Best Deal on Top Cities.100% Safe Shopping Guarantee!",
"ad_aclk": "DChcSEwiUvq3SrdrlAhWLg5EKHWsCD-0YABACGgJjZQ"
}
],
"main_domain": "dataforseo.com",
"relative_url": "/",
"etv": 15.199999809265137,
"impressions_etv": 24.441600799560547,
"estimated_paid_traffic_cost": 119.4809799194336,
"rank_changes": {
"previous_rank_absolute": 1,
"is_new": false,
"is_up": false,
"is_down": false
}
},
{
"type": "google_reviews",
"rank_group": 1,
"rank_absolute": 15,
"position": "right",
"xpath": "/#document",
"reviews_count": 9031,
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 803,
"rating_max": 5
},
"place_id": "ChIJBVXQG_CgJ0ERON-jp0YRZE0",
"feature": "0x4127a0f01bd05505:0x4d641146a7a3df38",
"cid": "16568475418893539593"
},
{
"type": "google_posts",
"rank_group": 1,
"rank_absolute": 3,
"position": "right",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/div[10]",
"posts_id": "lph_fdxNX-CFCsHVkwWz962wCw154",
"feature": "0x88db403dfe9c2975:0xb5297332e0c33afb",
"cid": "13054091657266543355"
},
{
"type": "google_flights",
"rank_group": 1,
"rank_absolute": 15,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]",
"title": "Flights from Kharkiv (HRK) to Lviv (LWO)",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhopEgoyMDE5LTExLTE0ag0IAhIJL20vMDgyc3k5cgwIAhIIL20vMGQ3X24aKRIKMjAxOS0xMS0xN2oMCAISCC9tLzBkN19ucg0IAhIJL20vMDgyc3k5ekBDaWRIZVRZNWQwSkhMUzB0TFMwdExTMHRZMlZ4YmpJMlFVRkJRVUZHTTBaUVRVVkVkMGhLUVVFU0EyNVFVUT09&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8QuRUwAHoECGIQAw",
"items": [
{
"type": "google_flights_element",
"description": "SkyUp 1h 50m Non-stop from UAH 1,944 ",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJQUWoNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAlBRagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoADAAegQIYhAQ"
},
{
"type": "google_flights_element",
"description": "LOT 7h 5m+ Connecting from UAH 52,388 ",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJMT2oNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAkxPagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoATAAegQIYhAR"
},
{
"type": "google_flights_element",
"description": "Ukraine International 3h 20m+ Connecting check price ",
"url": "https://www.google.com.ua/flights?num=100&hl=en&gl=UA&source=flun&lite=0&uitype=cuAA&tfs=CAEQAhotEgoyMDE5LTExLTE0MgJQU2oNCAISCS9tLzA4MnN5OXIMCAISCC9tLzBkN19uGi0SCjIwMTktMTEtMTcyAlBTagwIAhIIL20vMGQ3X25yDQgCEgkvbS8wODJzeTl6QENpZEhlVFk1ZDBKSExTMHRMUzB0TFMwdFkyVnhiakkyUVVGQlFVRkdNMFpRVFVWRWQwaEtRVUVTQTI1UVVRPT0&sa=X&ved=2ahUKEwjOjKfSrdrlAhXkILkGHYO_DF8Q1RUoAjAAegQIYhAS"
}
]
},
{
"type": "people_also_ask",
"rank_group": 1,
"rank_absolute": 17,
"position": "left",
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]",
"items": [
{
"type": "people_also_ask_element",
"title": "What is the best texting app?",
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]/div[1]/div[1]/div[1]",
"expanded_element": [
{
"type": "people_also_ask_expanded_element",
"featured_title": null,
"url": "https://www.xda-developers.com/best-text-messaging-apps-android/",
"domain": "www.xda-developers.com",
"title": "Best Text Messaging Apps for Android - XDA Developers",
"description": "Best Text Messaging Apps for AndroidAndroid Messages (Top Choice) The good news for a lot of people is the best text messaging app is probably already on your phone. ... Chomp SMS. Chomp SMS is an old classic and it's still one of the best messaging apps. ... EvolveSMS. ... Facebook Messenger. ... Handcent Next SMS. ... Mood Messenger. ... Pulse SMS. ... QKSMS.More items...",
"timestamp": "2020-09-11 14:42:55 +00:00",
"table": null
}
]
},
{
"type": "people_also_ask_element",
"title": "What is the best free texting app?",
"xpath": "/html[1]/body[1]/div[10]/div[2]/div[5]/div[1]/div[3]/div[1]/div[5]/div[1]/div[1]/div[1]/div[1]/div[2]",
"expanded_element": [
{
"type": "people_also_ask_expanded_element",
"featured_title": null,
"url": "https://www.androidauthority.com/best-free-text-apps-android-937389/",
"domain": "www.androidauthority.com",
"title": "5 free text apps for Android that send real SMS messages! (Updated ...",
"description": "Google Voice is an excellent free texting app and easily one of the most popular. It lets you send free SMS messages and make free phone calls in the U.S. or Canada.2 May 2019",
"timestamp": "2020-09-11 14:42:55 +00:00",
"table": null
}
]
}
]
},
{
"type": "images",
"rank_group": 1,
"rank_absolute": 69,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[2]/div[2]/div[1]/div[1]/div[66]/div[1]/div[2]",
"title": "Images for google pixel 5",
"url": "https://www.google.com/search?num=100&safe=strict&source=univ&tbm=isch&q=google+pixel+5&gl=US&hl=en&sa=X&ved=2ahUKEwjj38uSm7PxAhUzhuYKHeUsDncQjJkEegQIMxAC",
"items": [
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://www.amazon.com/Google-Pixel-Resistant-Smartphone-Ultrawide/dp/B08H8X23ZB",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSG-CP4bWXtOqg-HgdQ8O6eDq93H49ThLZXfz8e7BLlVw&s"
},
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://store.google.com/product/pixel_5",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQXHy0fH_sPtwzA6HBYjCYVa9qjmNdPyikdHcpQJ-2Y&s"
},
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://www.bestbuy.com/site/google-pixel-5-5g-128gb-unlocked-just-black/6431992.p?skuId=6431992",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcROhijfKW7EITaKaSa3vJiagrvp4v8e6W2YgvtedZGU&s"
},
{
"type": "images_element",
"alt": "Image result for google pixel 5",
"url": "https://www.gsmarena.com/google_pixel_5-10386.php",
"image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRjnRvSpLnfyKzxMH5gQzMAVRYwRvbyqWFreOz7TU_r&s"
}
],
"related_image_searches": [
{
"type": "related_image_searches_element",
"title": "desktop",
"alt": null,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:desktop:GhRwno6xyAk%3D&usg=AI4_-kRZZbrJkRKpY-dI4XnJZmHIj9tomg&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAR6BAgTEBo",
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:23"
},
{
"type": "related_image_searches_element",
"title": "nature",
"alt": null,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:nature:QFotJTE5uJk%3D&usg=AI4_-kT9GMRWruVX-G44OLrYUJeJSSYP-g&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAV6BAgTEB4",
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:24"
},
{
"type": "related_image_searches_element",
"title": "lock screen",
"alt": null,
"url": "https://www.google.com/search?num=100&hl=en&gl=US&q=wallpaper&tbm=isch&chips=q:wallpaper,g_1:lock+screen:D2QY-VvDcCE%3D&usg=AI4_-kTJhC34RX6VCIJGcKVM1xOgzbG04Q&sa=X&ved=2ahUKEwiJ-5C69ZD0AhWC2KQKHS7ND6EQgIoDKAd6BAgTECY",
"image_url": "https://api.dataforseo.com/cdn/i/11112016-1535-0139-0000-17729d37cb22:26"
}
]
},
{
"type": "shopping",
"rank_group": 1,
"rank_absolute": 19,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[10]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]",
"title": "See buy treadmill",
"items": [
{
"type": "shopping_element",
"title": "NordicTrack Commercial 1750 Treadmill",
"price": {
"current": 1799,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$1,799.00"
},
"source": "NordicTrack",
"description": null,
"marketplace": null,
"marketplace_url": null,
"url": "https://www.nordictrack.com/treadmills/commercial-1750-treadmill"
},
{
"type": "shopping_element",
"title": "7.0AT Studio Treadmill by Horizon. Powerful Motor, Folding Treadmill.",
"price": {
"current": 999,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$999.00"
},
"source": "Horizon Fitness",
"description": null,
"marketplace": null,
"marketplace_url": null,
"url": "https://www.horizonfitness.com/horizon-7-0-at-treadmill"
},
{
"type": "shopping_element",
"title": "NordicTrack Commercial X32i Incline Treadmill Series",
"price": {
"current": 3799,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$3,799.00"
},
"source": "NordicTrack",
"description": null,
"marketplace": null,
"marketplace_url": null,
"url": "https://www.nordictrack.com/incline-trainers/commercial-x32i"
}
]
},
{
"type": "jobs",
"rank_group": 1,
"rank_absolute": 20,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/g-card[1]/div[1]/div[1]",
"title": "Jobs Near New York, NY",
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs&sa=X&ved=2ahUKEwiV1J_Gl4jmAhUiAmMBHY6HA-wQiYsCKAB6BAgSEAM",
"items": [
{
"type": "jobs_element",
"title": "SEO Lead",
"description": "Grailed\nNew York, NY",
"author": "via Built In NYC",
"job_posted_time": "Over 1 month ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"contract_type": "Full-time",
"salary": null,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=sva_zVrSNMbg3Qx4AAAAAA%3D%3D"
},
{
"type": "jobs_element",
"title": "SEO Manager",
"description": "New York Post\nNew York, NY",
"author": "via LinkedIn",
"job_posted_time": "Over 1 month ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"contract_type": "Full-time",
"salary": null,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=7an02v1tOj4sF2QdAAAAAA%3D%3D"
},
{
"type": "jobs_element",
"title": "Assistant Director, Search Engine Optimization",
"description": "Hospital for Special Surgery\nNew York, NY",
"author": "via LinkedIn",
"job_posted_time": "4 days ago",
"timestamp": "2020-09-11 14:42:55 +00:00",
"contract_type": "Full-time",
"salary": null,
"url": "https://www.google.com/search?q=seo+jobs+nyc&num=100&hl=en-US&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&ibp=htl;jobs#htidocid=gSWuAZR4HsDT0uhtAAAAAA%3D%3D"
}
]
},
{
"type": "events",
"rank_group": 1,
"rank_absolute": 21,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/div[1]/g-card[1]/div[1]/div[1]",
"title": "Eventos",
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn",
"items": [
{
"type": "events_element",
"title": "Metallica Tribute Show",
"snippet": "sáb., 19:00\nPrague Congress Centre, 5. května 1640/65\nPrague 4-Nusle, Tchéquia",
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn&sa=X&ved=2ahUKEwiXxsSc6MbnAhVmKLkGHTuZASQQ5bwDMAB6BAgPEAE#fpstate=tldetail&htidocid=wHvEAt0DuBX7XOr6JpA8-A%3D%3D&htivrt=events"
},
{
"type": "events_element",
"title": "Maluma Official Afterparty - Prague",
"snippet": "qui., 27 – sex., 28 de fev.\nDupleX, The Rooftop Venue, Václavské nám. 831/21\nNew Town, Tchéquia",
"url": "https://www.google.com.br/search?q=shows+em+praga&num=100&gws_rd=cr&ie=UTF-8&oe=UTF-8&hl=pt-BR&gl=BR&uule=w+CAIQIFISCaORW-QYPVqTEX9d2Ati0-gk&ibp=htl;events&rciv=evn&sa=X&ved=2ahUKEwiXxsSc6MbnAhVmKLkGHTuZASQQ5bwDMAF6BAgQEAE#fpstate=tldetail&htidocid=H6X_mJy9t1p7DU8JJpA8-A%3D%3D&htivrt=events"
}
]
},
{
"type": "mention_carousel",
"rank_group": 1,
"rank_absolute": 22,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]/g-card[1]",
"title": "Top 16 IP Surveillance Cameras",
"items": [
{
"type": "mention_carousel_element",
"title": "NordicTrack Commercial 1750",
"price": {
"current": 1700,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$1,700+"
},
"rating": {
"rating_type": "Max5",
"value": 4.1,
"votes_count": 46,
"rating_max": 5
},
"mentioned_in": [
{
"type": "link_element",
"title": "NordicTrack Commercial 1750 Review 2021",
"snippet": "The NordicTrack Commercial 1750 is a reliable, high-quality treadmill that will more than satisfy users.",
"url": "https://www.fitrated.com/treadmills/nordictrack-commercial-1750-treadmill-review/#:~:text=The%20NordicTrack%20Commercial%201750,more%20than%20satisfy%20users."
},
{
"type": "link_element",
"title": "Expert ReviewsBest home security camera 2020: The best IP security cameras to protect your home",
"snippet": null,
"url": "https://www.expertreviews.co.uk/ip-cameras/1405720/best-home-security-cameras-best-ip-security-camera-to-buy"
}
]
},
{
"type": "mention_carousel_element",
"title": "Nest Cam Outdoor",
"price": {
"current": 160,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$160+"
},
"rating": {
"rating_type": "Max5",
"value": 4.6,
"votes_count": 6618,
"rating_max": 5
},
"mentioned_in": [
{
"type": "link_element",
"title": "Nest Cam Outdoor Review",
"snippet": null,
"url": "https://www.trustedreviews.com/reviews/nest-cam-outdoor"
},
{
"type": "link_element",
"title": "TechRadarBest security camera system for your business in 2020",
"snippet": null,
"url": "https://www.techradar.com/best/best-office-security-camera-systems"
}
]
}
]
},
{
"type": "recipes",
"rank_group": 1,
"rank_absolute": 23,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"items": [
{
"type": "recipes_element",
"title": "Homemade Pizza",
"url": "https://www.simplyrecipes.com/recipes/homemade_pizza/",
"domain": "www.simplyrecipes.com",
"source": "Simply Recipes",
"description": "Italian sausage, pesto, feta cheese, bell peppers, tomato sauce",
"time": "2 hr 30 min",
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 285,
"rating_max": 5
}
},
{
"type": "recipes_element",
"title": "How To Make The Best Homemade Pizza Recipe by Tasty",
"url": "https://tasty.co/recipe/pizza-dough",
"domain": "tasty.co",
"source": "Tasty",
"description": "Ricotta cheese, tomato sauce, fresh basil pesto, fresh mozzarella cheese, semolina flour",
"time": null,
"rating": {
"rating_type": "Max5",
"value": 4.9,
"votes_count": 2,
"rating_max": 5
}
}
]
},
{
"type": "top_sights",
"rank_group": 1,
"rank_absolute": 24,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"title": "Top sights in Pittsburgh",
"items": [
{
"type": "top_sights_element",
"title": "Phipps Conservatory and Botanical Gardens4.8(6,300)Botanical gardens & Victorian greenhouse",
"url": "https://www.google.com/travel/things-to-do/see-all?g2lb=2502548,4258168,4270442,4306835,4317915,4322823,4328159,4371335,4401769,4403882,4419364,4424916,4425793,4428791,4432151,4432284,4270859,4284970,4291517,4412693&hl=en&gl=us&un=1&dest_mid=/m/068p2&dest_state_type=sattd&dest_src=ts&poi_mid=/m/077lw0&sa=X&ved=2ahUKEwij75zu5NnrAhURqXEKHUGZBbIQ69EBKAAwAHoECAoQKQ",
"description": "Botanical gardens & Victorian greenhouse",
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 6300,
"rating_max": 5
}
},
{
"type": "top_sights_element",
"title": "The Andy Warhol Museum4.6(2,958)Warhol's works & the art he inspired",
"url": "https://www.google.com/travel/things-to-do/see-all?g2lb=2502548,4258168,4270442,4306835,4317915,4322823,4328159,4371335,4401769,4403882,4419364,4424916,4425793,4428791,4432151,4432284,4270859,4284970,4291517,4412693&hl=en&gl=us&un=1&dest_mid=/m/068p2&dest_state_type=sattd&dest_src=ts&poi_mid=/m/04n7k0b&sa=X&ved=2ahUKEwij75zu5NnrAhURqXEKHUGZBbIQ69EBKAEwAHoECAoQKw",
"description": "Warhol's works & the art he inspired",
"rating": {
"rating_type": "Max5",
"value": 4.6,
"votes_count": 2958,
"rating_max": 5
}
}
]
},
{
"type": "scholarly_articles",
"rank_group": 1,
"rank_absolute": 25,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]",
"title": "Scholarly articles for medicine articles",
"url": "http://scholar.google.com/scholar?q=medicine+articles&hl=en&as_sdt=0&as_vis=1&oi=scholart",
"items": [
{
"type": "scholarly_articles_element",
"title": "… for publication in the Journal of Translational Medicine",
"url": "http://scholar.google.com/scholar_url?url=https://link.springer.com/article/10.1186/1479-5876-1-11&hl=en&sa=X&scisig=AAGBfm1WejtZnVCZsU3tzRdZElwwQaLqXw&nossl=1&oi=scholarr",
"author": "Marincola",
"description": "- Cited by 462"
},
{
"type": "scholarly_articles_element",
"title": "… in medicine -a review with quality grading of articles",
"url": "http://scholar.google.com/scholar_url?url=https://www.tandfonline.com/doi/abs/10.1080/01421599978979&hl=en&sa=X&scisig=AAGBfm2PM9wHLayDqCeL96xg-_gXFGKXMw&nossl=1&oi=scholarr",
"author": "Aspegren",
"description": "- Cited by 612"
}
]
},
{
"type": "popular_products",
"rank_group": 1,
"rank_absolute": 26,
"position": "left",
"xpath": "/html[1]/body[1]/div[8]/div[3]/div[9]/div[1]/div[2]/div[1]",
"items": [
{
"type": "popular_products_element",
"title": "Philips Hue Sensor One",
"description": null,
"price": {
"current": 44,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$44+"
},
"rating": {
"rating_type": "Max5",
"value": 4.7,
"votes_count": 996,
"rating_max": 5
}
},
{
"type": "popular_products_element",
"title": "Aeon Labs AEOEZW100 White multimedia motion sensor Hardware/Electronic",
"description": null,
"price": {
"current": 59,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": true,
"displayed_price": "$59+"
},
"rating": {
"rating_type": "Max5",
"value": 4.4,
"votes_count": 105,
"rating_max": 5
}
}
]
},
{
"type": "podcasts",
"rank_group": 1,
"rank_absolute": 27,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[9]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[2]",
"items": [
{
"type": "podcasts_element",
"title": "Fresh Air",
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5ucHIub3JnLzM4MTQ0NDkwOC9wb2RjYXN0LnhtbA/episode/MWQ3Yzk2MDgtNDgzMy00ZTI2LTlhYTEtNjQ0NTY1ZTA4Yjcx",
"description": "Celebrating Sonny Rollins / Octavia Spencer",
"timestamp": "2020-09-13 22:42:55 +00:00",
"time_to_play": "49m"
},
{
"type": "podcasts_element",
"title": "Fresh Air",
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5ucHIub3JnLzM4MTQ0NDkwOC9wb2RjYXN0LnhtbA/episode/NzdhMDYyODQtZmU3ZS00OWNmLThiYjgtODczN2IxMjEyY2Ez",
"description": "Best Of: Cherry Jones / The Early Years Of The CIA",
"timestamp": "2020-09-11 14:42:55 +00:00",
"time_to_play": "50m"
}
]
},
{
"type": "questions_and_answers",
"rank_group": 1,
"rank_absolute": 27,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"items": [
{
"type": "questions_and_answers_element",
"url": "https://www.sarthaks.com/8816/predict-the-products-of-electrolysis-in-each-of-the-following",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "Answer: We have\n\n(i) AgNO3 ionizes in aqueous solutions to form Ag+ and NO3- ions.\n\nOn electrolysis, either Ag+ ions or H2O molecules can be reduced ...",
"source": "Sarthaks eConnect",
"domain": "www.sarthaks.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://brainly.in/question/17093922",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "Answer:7/8mg magnesium hope it helps",
"source": "Brainly.in",
"domain": "brainly.in",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://www.meritnation.com/ask-answer/question/predict-the-product-of-electrolysis-in-each-of-the-following/electrochemistry/11575355",
"question_text": "Predict the product of electrolysis in each of the following",
"answer_text": "Dear Student\n\nKindly refer to the link for similar query -\n\nhttps://www meritnation\ncom/ask-answer/q ...",
"source": "Meritnation",
"domain": "www.meritnation.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://www.toppr.com/en-us/ask/question/predict-the-products-of-electrolysis-in-each-of-the-followingi-an-aqueous-solution-of-agno3/",
"question_text": "Predict the products of electrolysis",
"answer_text": "(i) An aqueous solution of AgNO3 with silver electrodes.At cathode: Silver ions have lower discharge potential than hydrogen ions. Hence, silver ions ...",
"source": "Toppr",
"domain": "www.toppr.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://www.toppr.com/ask/question/predict-the-products-of-electrolysis-in-each-of-the-followingan-aqueous-solution-of-cucl2with-platinum/",
"question_text": "Predict the products of electrolysis",
"answer_text": "When an aqueous solution of CuCl2 is electrolyzed with platinum electrodes, chlorine is obtained at anode and Cu is deposited at cathode. 2Cl - → Cl2 ...",
"source": "Toppr",
"domain": "www.toppr.com",
"votes": 0
},
{
"type": "questions_and_answers_element",
"url": "https://brainly.in/question/2161527",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "(i) an aqueous solution of AgNO3 with silver electrode.here two oxidation and two reduction half reactions must be considered .now, oxidation (at anode ...",
"source": "Brainly.in",
"domain": "brainly.in",
"votes": 18
},
{
"type": "questions_and_answers_element",
"url": "https://learn.careers360.com/ncert/question-predict-the-product-of-electrolysis-in-each-of-the-following-an-aqueous-solution-of-cucl2-with-platinum-electrodes/",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "342",
"source": "Careers360",
"domain": "learn.careers360.com",
"votes": 1
},
{
"type": "questions_and_answers_element",
"url": "https://learn.careers360.com/ncert/question-predict-the-products-of-electrolysis-in-each-of-the-following-a-dilute-solution-of-h2so4-with-platinum-electrodes/",
"question_text": "Predict the products of electrolysis in each of the following:",
"answer_text": "135",
"source": "Careers360",
"domain": "learn.careers360.com",
"votes": 1
}
]
},
{
"type": "find_results_on",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[6]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"items": [
{
"type": "find_results_on_element",
"title": "Electrical service and electrician in London",
"domain": "www.gumtree.com",
"url": "https://www.gumtree.com/electrical-services/london",
"source": "Gumtree"
},
{
"type": "find_results_on_element",
"title": "Electricians near London | Get a Quote",
"domain": "www.yell.com",
"url": "https://www.yell.com/s/electricians-london.html",
"source": "Yell"
}
]
},
{
"type": "stocks_box",
"rank_group": 1,
"rank_absolute": 28,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[2]/div[10]/div[1]/div[2]/div[1]/div[2]/div[2]/div[1]/div[1]/div[1]",
"title": "Market Summary > Tesla Inc",
"source": "NASDAQ: TSLA",
"snippet": "Pre-market After hours 409.25 +3.23 (0.80%)",
"price": {
"current": 579.21,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "579.21 USD"
},
"url": "https://www.google.com/finance?num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc&sa=X&ved=2ahUKEwjvzarM89nsAhXs73MBHaYZCH4Q6M8CMAB6BAgCEAQ",
"domain": "www.google.com",
"table": {
"table_header": null,
"table_content": [
[
"Mkt cap",
"384.87B"
],
[
"P/E ratio",
"804.45"
],
[
"Div yield",
"-"
],
[
"Prev close",
"406.02"
],
[
"52-wk high",
"502.49"
],
[
"52-wk low",
"61.85"
]
]
},
"graph": {
"items": [
{
"type": "graph_element",
"date": "2020-10-28T15:40:00",
"value": 409.04
},
{
"type": "graph_element",
"date": "2020-10-28T15:45:00",
"value": 409.23
},
{
"type": "graph_element",
"date": "2020-10-28T15:50:00",
"value": 408.05
},
{
"type": "graph_element",
"date": "2020-10-28T15:55:00",
"value": 407.19
},
{
"type": "graph_element",
"date": "2020-10-28T16:00:00",
"value": 406.02
}
],
"previous_items": [
{
"type": "graph_element",
"date": "2020-10-28T16:00:00",
"value": 406.02
},
{
"type": "graph_element",
"date": "2020-10-28T16:05:00",
"value": 406.73
},
{
"type": "graph_element",
"date": "2020-10-28T16:10:00",
"value": 406.7
},
{
"type": "graph_element",
"date": "2020-10-28T16:15:00",
"value": 405.11
},
{
"type": "graph_element",
"date": "2020-10-28T16:20:00",
"value": 405.2
}
]
}
},
{
"type": "visual_stories",
"rank_group": 1,
"rank_absolute": 29,
"position": "left",
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[3]/div[1]/g-card[1]",
"items": [
{
"type": "visual_stories_element",
"title": "Best Things To Do in New York City – U.S. News & World Report",
"url": "https://travel.usnews.com/ampstories/newyorkcity",
"domain": "travel.usnews.com"
},
{
"type": "visual_stories_element",
"title": "Best things to do on New York City's Roosevelt Island",
"url": "https://www.cnn.com/ampstories/travel/best-things-to-do-on-new-york-citys-roosevelt-island",
"domain": "www.cnn.com"
},
{
"type": "visual_stories_element",
"title": "Things To Do In New York City",
"url": "https://livetheadventure.club/stories/things-to-do-in-new-york-city",
"domain": "livetheadventure.club"
},
{
"type": "visual_stories_element",
"title": "A local’s guide to what to eat and do in New York City",
"url": "https://www.washingtonpost.com/graphics/2019/lifestyle/travel/amp-stories/a-locals-guide-to-what-to-eat-and-do-in-new-york-city/",
"domain": "www.washingtonpost.com"
}
]
},
{
"type": "commercial_units",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[5]/div[1]/div[2]/div[1]/div[1]/div[1]",
"title": "Tickets & tours",
"items": [
{
"type": "commercial_units_element",
"title": "9/11 Memorial at World Trade Center and Financial District Walking Tour",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 43,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$43"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 9,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Brooklyn: 2-Hour Manhattan & Brooklyn Bridges Bike Tour",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 46,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$46"
},
"source": "GetYourGuide",
"rating": {
"rating_type": "Max5",
"value": 4.5,
"votes_count": 18,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Private Carriage Ride in Central Park",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 85,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$85"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 4.5,
"votes_count": 28,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Statue of Liberty Sail On The Classic Schooner Shearwater",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 45,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$45"
},
"source": "GetYourGuide",
"rating": {
"rating_type": "Max5",
"value": 4.5,
"votes_count": 17,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "Romantic Central Park Horse-Drawn Carriage Tour",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 287,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$287"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 1,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "New York in One Day Guided Sightseeing Tour",
"url": "https://www.viator.com/new-york-city/d687-ttd",
"domain": "www.viator.com",
"price": {
"current": 89,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$89"
},
"source": "Viator",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 2000,
"rating_max": 5
}
},
{
"type": "commercial_units_element",
"title": "NYC: Statue of Liberty, Ellis Island, 911 & Cruise Pass",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 100,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$100"
},
"source": "GetYourGuide",
"rating": null
},
{
"type": "commercial_units_element",
"title": "NYC Ground Zero: Family Tour with Ticket for 9/11 Museum",
"url": "https://www.getyourguide.com/s",
"domain": "www.getyourguide.com",
"price": {
"current": 479,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": "$479"
},
"source": "GetYourGuide",
"rating": null
}
]
},
{
"type": "local_services",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]",
"title": "GOOGLE SCREENED|Personal Injury Lawyers nearby",
"url": "https://www.google.com/search?q=san+diego+personal+injury+lawyer&num=100&hl=en&gl=US&sabvi=Cjd4Y2F0OnNlcnZpY2VfYXJlYV9idXNpbmVzc19wZXJzb25hbF9pbmp1cnlfbGF3eWVyOmVuLVVT&sab=ChMIg4jfgciM8AIVgs3ICh2edA8hEhYIBBAAGgwIuPqdkwIQy8fIugkgACoAEhYIBBAAGgwIrrX5rAIQvua_vgkgACoAEhUIBBAAGgsIpf3TGhCzlK66CSAAKgAYyJDJqawNGJL3h-_3DBiDyr60uQ0",
"domain": "www.google.com",
"items": [
{
"type": "local_services_element",
"title": "i Accident Lawyer",
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChIIuPqdkwIQy8fIugkY_8evoCUSN3hjYXQ6c2VydmljZV9hcmVhX2J1c2luZXNzX3BlcnNvbmFsX2luanVyeV9sYXd5ZXI6ZW4tVVMahAEvYWNsaz9zYT1MJmFpPURDaGNTRXdpRGlOLUJ5SXp3QWhXQ3pjZ0tIWjUwRHlFWUFCQVFHZ0p4ZFEmbGFiZWw9Z2xzX21lc3NhZ2VfY2xpY2tfZnJlZSZzaWc9QU9ENjRfMEZYY0pXVkEwZ0xxNTczbU50VFg0UGt1MlV0dyZhZHVybD0ify9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBS0dnSnhkUSZsYWJlbD1wcm9maWxlX3ZpZXdfZnJlZSZzaWc9QU9ENjRfMFotTjRyb0JaS01aQUgwdTdHclNqS2ZfSTdSQSZhZHVybD0qfi9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBT0dnSnhkUSZsYWJlbD1jYWxsX2J1dHRvbl9mcmVlJnNpZz1BT0Q2NF8yVVVLQ3dpTk9ueDk1MzVoaU1EY0VEZGFocENRJmFkdXJsPTKBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBR0dnSnhkUSZsYWJlbD1nbHNfY2FsbF9jbGlja19mcmVlJnNpZz1BT0Q2NF8wQlBNZzBSaG9PVjNlTm42MTFORE0teW54ekFRJmFkdXJsPTqBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBVEdnSnhkUSZsYWJlbD1nbHNfYm9va19jbGlja19mcmVlJnNpZz1BT0Q2NF8xd1VmQVlfd3p5LVhSUzJQVHEwblhwVnFValJnJmFkdXJsPUITCIOI34HIjPACFYLNyAodnnQPIUgEUAE",
"domain": "www.google.com",
"description": "20 years in business",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 302,
"rating_max": 5
},
"profile_image_url": "https://lh3.googleusercontent.com/uzK7ihdygT9vLtKkhg387zYt2F1YKSXruQGteu8qcwrQuihexS3-B-KmgwWhh2w=fcrop64=1,5a1713919eba8d98"
},
{
"type": "local_services_element",
"title": "Hamparyan Personal Injury Lawyers, San Diego APC",
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChIIrrX5rAIQvua_vgkY_8evoCUSN3hjYXQ6c2VydmljZV9hcmVhX2J1c2luZXNzX3BlcnNvbmFsX2luanVyeV9sYXd5ZXI6ZW4tVVMahAEvYWNsaz9zYT1MJmFpPURDaGNTRXdpRGlOLUJ5SXp3QWhXQ3pjZ0tIWjUwRHlFWUFCQVJHZ0p4ZFEmbGFiZWw9Z2xzX21lc3NhZ2VfY2xpY2tfZnJlZSZzaWc9QU9ENjRfMWVRbGlWTGdUSU1KbGo5UThNUk9EdzJ4bEhlQSZhZHVybD0ify9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBSkdnSnhkUSZsYWJlbD1wcm9maWxlX3ZpZXdfZnJlZSZzaWc9QU9ENjRfMWwta3p0X0JRY0JOQ0FSdDlwTEFTMlJwVHRuUSZhZHVybD0qfi9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBTkdnSnhkUSZsYWJlbD1jYWxsX2J1dHRvbl9mcmVlJnNpZz1BT0Q2NF8yN3czUzZBMGZCVGJLYk1Zc1JIbldHR2p0NnlBJmFkdXJsPTKBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBRkdnSnhkUSZsYWJlbD1nbHNfY2FsbF9jbGlja19mcmVlJnNpZz1BT0Q2NF8yU2Q0dzNfV3V0NmxpTnV5THI1VjNlZTBpd2FBJmFkdXJsPTqBAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBVkdnSnhkUSZsYWJlbD1nbHNfYm9va19jbGlja19mcmVlJnNpZz1BT0Q2NF8yUm1jUDZxS3ZoV3F1UkFJdkhMSllXbGRxaUR3JmFkdXJsPUITCIOI34HIjPACFYLNyAodnnQPIUgEUAI",
"domain": "www.google.com",
"description": "9 years in business",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 62,
"rating_max": 5
},
"profile_image_url": "https://lh3.googleusercontent.com/GKIL8cPY1NGPlxycDLvn7r7362_MqHFIgUQLvFTQW8sWAJx6InAscqv4sfWQ8Q=fcrop64=1,3e2300babb62bc82"
},
{
"type": "local_services_element",
"title": "Pines Salomon Injury Lawyers, APC",
"url": "https://www.google.com/search?gsas=1&sabplaceid=ChIJSx6SrQ9T2YARed8V_f0hOg0&q=san+diego+personal+injury+lawyer&cs=0&sabpi=ChEIpf3TGhCzlK66CRj_x6-gJRI3eGNhdDpzZXJ2aWNlX2FyZWFfYnVzaW5lc3NfcGVyc29uYWxfaW5qdXJ5X2xhd3llcjplbi1VUxqEAS9hY2xrP3NhPUwmYWk9RENoY1NFd2lEaU4tQnlJendBaFdDemNnS0haNTBEeUVZQUJBU0dnSnhkUSZsYWJlbD1nbHNfbWVzc2FnZV9jbGlja19mcmVlJnNpZz1BT0Q2NF8ydTdPWWo0dmg3SC14NmN5U0NwT3RfVGhJYlNRJmFkdXJsPSJ_L2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFJR2dKeGRRJmxhYmVsPXByb2ZpbGVfdmlld19mcmVlJnNpZz1BT0Q2NF8waXo4WkQ0aHZaUnNlZy00cmI4d2xVUlhfbmFRJmFkdXJsPSp-L2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFNR2dKeGRRJmxhYmVsPWNhbGxfYnV0dG9uX2ZyZWUmc2lnPUFPRDY0XzBwQVdBWGhqMHVIVUctR04zZVpucy05enVtZmcmYWR1cmw9MoEBL2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFFR2dKeGRRJmxhYmVsPWdsc19jYWxsX2NsaWNrX2ZyZWUmc2lnPUFPRDY0XzJhRGcyT2hEMDBfYU05eFphbTQ2aEVsWmNrOUEmYWR1cmw9OoEBL2FjbGs_c2E9TCZhaT1EQ2hjU0V3aURpTi1CeUl6d0FoV0N6Y2dLSFo1MER5RVlBQkFVR2dKeGRRJmxhYmVsPWdsc19ib29rX2NsaWNrX2ZyZWUmc2lnPUFPRDY0XzBpS2wxaHhUMFhMOHpNV2RhNGwzM3U2anR3aEEmYWR1cmw9QhMIg4jfgciM8AIVgs3ICh2edA8hSARQAw",
"domain": "www.google.com",
"description": "29 years in business",
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 213,
"rating_max": 5
},
"profile_image_url": "https://lh3.googleusercontent.com/PMP8ZawJe51VdRcJzKfSDcQXxmoviIp4VA7aCFr_Z5AmP2yJu3JEE1UGKw5fxw=fcrop64=1,249200a8ecf2aa4f"
}
]
},
{
"type": "google_hotels",
"rank_group": 1,
"rank_absolute": 1,
"position": "right",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[8]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[4]/div[1]/div[1]/a[1]",
"hotel_identifier": "CgsI4srPluaypZuVARAB",
"url": "https://google.com/travel/hotels/entity/CgsI4srPluaypZuVARAB"
}
]
},
{
"keyword": "albert einstein",
"type": "organic",
"se_domain": "google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://www.google.com/search?q=car%20insurance&num=100&hl=en&gl=US&gws_rd=cr&ie=UTF-8&oe=UTF-8&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc",
"datetime": "2021-10-01 03:37:47 +00:00",
"spell": null,
"item_types": [
"paid",
"organic",
"local_pack",
"people_also_ask",
"top_stories",
"related_searches",
"multi_carousel"
],
"se_results_count": 2070000000,
"items_count": 106,
"items": [
{
"type": "paid",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"xpath": "/html[1]/body[1]/div[7]/div[1]/div[9]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]",
"title": "Car Insurance - Get a Fast Free Quote Online",
"domain": "www.statefarm.com",
"description": "Get a Free Quote Online and See How Much You Can Save with State Farm. Save with Our Surprisingly Great Rates on Car Insurance. Get a Quote! Save up to 40% Local agents.",
"breadcrumb": "https://www.statefarm.com/",
"url": "https://www.statefarm.com/quote-start",
"highlighted": [
"Car Insurance"
],
"extra": {
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABAAGgJscg"
},
"description_rows": null,
"links": [
{
"type": "ad_link_element",
"title": "Switch And Save",
"description": null,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABABGgJscg",
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABABGgJscg"
},
{
"type": "ad_link_element",
"title": "Free Quick Auto Quote",
"description": null,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABACGgJscg",
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABACGgJscg"
},
{
"type": "ad_link_element",
"title": "Find An Agent",
"description": null,
"url": "https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABADGgJscg",
"ad_aclk": "DChcSEwjTwsz-3qDzAhVkDOYKHRD1BEsYABADGgJscg"
}
],
"main_domain": "statefarm.com",
"relative_url": "/quote-start",
"etv": 26164.8,
"impressions_etv": 4461.85206,
"estimated_paid_traffic_cost": 2664105.4044432,
"rank_changes": {
"previous_rank_absolute": null,
"is_new": false,
"is_up": false,
"is_down": false
}
}
]
}
]
}
]
}
]
}
POST https://api.dataforseo.com/v3/dataforseo_labs/historical_serps/live
All POST data should be sent in the JSON format (UTF-8 encoding). When setting a task, you should send all task parameters in the task array of the generic POST array. You can send up to 2000 API calls per minute, each Live SERP API call can contain only one task.
Below you will find a detailed description of the fields you can use for setting a task.
Description of the fields for setting a task:
Field name
Type
Description
keyword
string
keyword
required field
you can specify up to 700 symbols in the keyword
field;
all %## will be decoded (plus symbol ‘+’ will be decoded to a space character);
if you need to use the “%” symbol for your keyword
, please specify it as “%25”;
if you need to use the “+” symbol for your keyword
, please specify it as “%2B”
date_from
string
starting date of the time range
optional field
if you don’t specify this field, the API will return all collected SERPs starting from 2021-08-01;
minimal possible value: 2021-08-01
;
date format: "yyyy-mm-dd"
date_to
string
ending date of the time range
optional field
if you don’t specify this field, the today’s date will be used by default;
date format: "yyyy-mm-dd"
;
example:
"2021-09-01"
location_name
string
full name of the location
required field if you don’t specify location_code
Note: it is required to specify either location_name
or location_code
you can receive the list of available locations with their location_name
by making a separate request to https://api.dataforseo.com/v3/dataforseo_labs/locations_and_languages
example:
United Kingdom
location_code
integer
unique location identifier
required field if you don’t specify location_name
Note: it is required to specify either location_name
or location_code
you can receive the list of available locations with their location_code
by making a separate request to https://api.dataforseo.com/v3/dataforseo_labs/locations_and_languages
example:
2840
language_name
string
full name of the language
optional field
if you use this field, you don’t need to specify language_code
you can receive the list of available languages with their language_name
by making a separate request to https://api.dataforseo.com/v3/dataforseo_labs/locations_and_languages
ignore this field to get the results for all available languages
example:
English
language_code
string
language code
optional field
if you use this field, you don’t need to specify language_name
you can receive the list of available languages with their language_code
by making a separate request to https://api.dataforseo.com/v3/dataforseo_labs/locations_and_languages
ignore this field to get the results for all available languages
example:
en
tag
string
user-defined task identifier
optional field
the character limit is 255
you can use this parameter to identify the task and match it with the result
you will find the specified tag
value in the data
object of the response
As a response of the API server, you will receive JSON -encoded data containing a tasks
array with the information specific to the set tasks.
Description of the fields in the results array:
Field name
Type
Description
version
string
the current version of the API
status_code
integer
general status code
you can find the full list of the response codes here
Note: we strongly recommend designing a necessary system for handling related exceptional or error conditions
status_message
string
general informational message
you can find the full list of general informational messages here
time
string
execution time, seconds
cost
float
total tasks cost, USD
tasks_count
integer
the number of tasks in the tasks
array
tasks_error
integer
the number of tasks in the tasks
array returned with an error
tasks
array
array of tasks
id
string
task identifier
unique task identifier in our system in the UUID format
status_code
integer
status code of the task
generated by DataForSEO; can be within the following range: 10000-60000
you can find the full list of the response codes here
status_message
string
informational message of the task
you can find the full list of general informational messages here
time
string
execution time, seconds
cost
float
cost of the task, USD
result_count
integer
number of elements in the result
array
path
array
URL path
data
object
contains the same parameters that you specified in the POST request
result
array
array of results
the array includes objects with SERPs for each month within the specified time frame
keyword
string
keyword received in a POST array
the keyword is returned with decoded %## (plus symbol ‘+’ will be decoded to a space character)
type
string
search engine type in a POST array
se_domain
string
search engine domain in a POST array
location_code
integer
location code in a POST array
language_code
string
language code in a POST array
check_url
string
direct URL to search engine results
you can use it to make sure that we provided accurate results
datetime
string
date and time when the result was received
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
spell
object
autocorrection of the search engine
if the search engine provided results for a keyword that was corrected, we will specify the keyword corrected by the search engine and the type of autocorrection
keyword
string
keyword obtained as a result of search engine autocorrection
the results will be provided for the corrected keyword
type
string
type of autocorrection
possible values:
did_you_mean
, showing_results_for
, no_results_found_for
item_types
array
types of search results in SERP
contains types of search results (items
) found in SERP.
possible item types:
answer_box
, carousel
, multi_carousel
, featured_snippet
, google_flights
, google_reviews
, google_posts
, images
, jobs
, knowledge_graph
, local_pack
, hotels_pack
, map
, organic
, paid
, people_also_ask
, related_searches
, people_also_search
, shopping
, top_stories
, twitter
, video
, events
, mention_carousel
, recipes
, top_sights
, scholarly_articles
, popular_products
, podcasts
, questions_and_answers
, find_results_on
, stocks_box
, visual_stories
, commercial_units
, local_services
, google_hotels
, math_solver
se_results_count
integer
total number of results in SERP
items_count
integer
the number of results returned in the items
array
items
array
elements of search results found in SERP
type
string
type of element = ‘organic’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
domain
string
domain in SERP
title
string
title of the result in SERP
url
string
relevant URL in SERP
breadcrumb
string
breadcrumb in SERP
is_image
boolean
indicates whether the element contains an image
is_video
boolean
indicates whether the element contains a video
is_featured_snippet
boolean
indicates whether the element is a featured_snippet
is_malicious
boolean
indicates whether the element is marked as malicious
description
string
description of the results element in SERP
pre_snippet
string
includes additional information appended before the result description in SERP
extended_snippet
string
includes additional information appended after the result description in SERP
amp_version
boolean
Accelerated Mobile Pages
indicates whether an item has the Accelerated Mobile Page (AMP) version
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
highlighted
array
words highlighted in bold within the results description
links
array
sitelinks
the links shown below some of Google’s search results
if there are none, equals null
type
string
type of element = ‘link_element ‘
title
string
title of the result in SERP
description
string
description of the results element in SERP
url
string
sitelink URL
about_this_result
object
contains information from the ‘About this result’ panel
‘About this result’ panel provides additional context about why Google returned this result for the given query;
this feature appears after clicking on the three dots next to most results
type
string
type of element = ‘about_this_result_element ‘
url
string
result’s URL
source
string
source of additional information about the result
source_info
string
additional information about the result
description of the website from Wikipedia or another additional context
source_url
string
URL to full information from the source
language
string
the language of the result
location
string
location for which the result is relevant
search_terms
array
matching search terms that appear in the result
related_terms
array
related search terms that appear in the result
main_domain
string
primary domain name in SERP
relative_url
string
URL in SERP that does not specify the HTTPs protocol and domain name
etv
float
estimated traffic volume
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and search volume values of the returned keyword
learn more about how the metric is calculated in this help center article
impressions_etv
float
estimated traffic volume based on impressions
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and impressions values of the returned keyword
learn more about how the metric is calculated in this help center article
estimated_paid_traffic_cost
float
estimated cost of converting organic search traffic into paid
represents the estimated monthly cost of running ads for the returned keyword
the metric is calculated as the product of organic etv
and paid cpc
values and indicates the cost of driving the estimated volume of monthly organic traffic through PPC advertising in Google Search
learn more about how the metric is calculated in this help center article
rank_changes
array
changes in rankings
ranking changes of the SERP element compared to the preceding month;
Note: the changes are calculated even if the preceding month is not included in a POST request
previous_rank_absolute
integer
previous absolute rank in SERP
indicates previous rank of the element in Google SERP;
if this element is new, the value will be null
is_new
boolean
element was previously present in SERP
if the value is true
, previously collected SERP didn’t contain this element
is_up
boolean
rank of this element went up
if the value is true
, position of the element in SERP is higher compared to the previous check
is_down
boolean
rank of this element went down
if the value is true
, position of the element in SERP is lower compared to the previous check
type
string
type of element = ‘paid’
rank_group
integer
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
domain
string
domain in SERP of the Ad element
description
string
description of the results element in SERP
breadcrumb
string
breadcrumb of the Ad element in SERP
url
string
relevant URL of the Ad element in SERP
highlighted
array
words highlighted in bold within the results description
extra
array
additional information about the result
ad_aclk
string
the identifier of the ad
description_rows
array
extended description
if there is none, equals null
links
array
sitelinks
the links shown below some of Google’s search results
if there are none, equals null
type
string
type of element = ‘ad_link_element ‘
title
string
title of the link element
description
string
description of the results element in SERP
url
string
URL link
ad_aclk
string
the identifier of the ad
main_domain
string
primary domain name in SERP
relative_url
string
URL in SERP that does not specify the HTTPs protocol and domain name
etv
float
estimated traffic volume
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and search volume values of the returned keyword
learn more about how the metric is calculated in this help center article
impressions_etv
float
estimated traffic volume based on impressions
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and impressions values of the returned keyword
learn more about how the metric is calculated in this help center article
estimated_paid_traffic_cost
float
estimated cost of paid monthly search traffic
represents the estimated cost of paid monthly traffic based on etv
and cpc
values
learn more about how the metric is calculated in this help center article
rank_changes
array
changes in rankings
ranking changes of the SERP element compared to the preceding month;
Note: the changes are calculated even if the preceding month is not included in a POST request
previous_rank_absolute
integer
previous absolute rank in SERP
indicates previous rank of the element in Google SERP;
if this element is new, the value will be null
is_new
boolean
element was previously present in SERP
if the value is true
, previously collected SERP didn’t contain this element
is_up
boolean
rank of this element went up
if the value is true
, position of the element in SERP is higher compared to the previous check
is_down
boolean
rank of this element went down
if the value is true
, position of the element in SERP is lower compared to the previous check
type
string
type of element = ‘carousel’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘carousel_element ‘
title
string
title of the item
sub_title
string
subtitle of the item
type
string
type of element = ‘multi_carousel’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘multi_carousel_element ‘
title
string
title of the item
multi_carousel_snippets
array
multi_carousel_snippet
results
type
string
type of element = ‘multi_carousel_snippet ‘
title
string
title of a particular item
type
string
type of element = ‘answer_box’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
text
array
text
if there is none, equals null
links
array
sitelinks
the links shown below some of Google’s search results
if there are none, equals null
type
string
type of element = ‘link_element ‘
title
string
title of the link
description
string
description of the results element in SERP
url
string
URL link
type
string
type of element = ‘related_searches’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘people_also_search’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘local_pack’
rank_group
integer
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
description
string
description of the results element in SERP
domain
string
domain in SERP
phone
string
phone number
url
string
relevant URL
is_paid
boolean
indicates whether the element is an ad
rating
array
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
integer
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
main_domain
string
primary domain name in SERP
relative_url
string
URL in SERP that does not specify the HTTPs protocol and domain name
etv
float
estimated traffic volume
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and search volume values of the returned keyword
learn more about how the metric is calculated in this help center article
impressions_etv
float
estimated traffic volume based on impressions
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and impressions values of the returned keyword
learn more about how the metric is calculated in this help center article
estimated_paid_traffic_cost
float
estimated cost of converting organic search traffic into paid
represents the estimated monthly cost of running ads for the returned keyword
the metric is calculated as the product of organic etv
and paid cpc
values and indicates the cost of driving the estimated volume of monthly organic traffic through PPC advertising in Google Search
learn more about how the metric is calculated in this help center article
rank_changes
array
changes in rankings
ranking changes of the SERP element compared to the preceding month;
Note: the changes are calculated even if the preceding month is not included in a POST request
previous_rank_absolute
integer
previous absolute rank in SERP
indicates previous rank of the element in Google SERP;
if this element is new, the value will be null
is_new
boolean
element was previously present in SERP
if the value is true
, previously collected SERP didn’t contain this element
is_up
boolean
rank of this element went up
if the value is true
, position of the element in SERP is higher compared to the previous check
is_down
boolean
rank of this element went down
if the value is true
, position of the element in SERP is lower compared to the previous check
type
string
type of element = ‘hotels_pack’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
date_from
string
starting date of stay
in the format “year-month-date”
example:
2019-11-15
date_to
string
ending date of stay
in the format “year-month-date”
example:
2019-11-17
items
array
contains results featured in the ‘hotels_pack’ element of SERP
type
string
type of element = ‘hotels_pack_element’
price
object
price of booking a place for the specified dates of stay
current
float
current price
indicates the current price of booking a place for the specified dates of stay
regular
float
regular price
indicates the regular price of booking a place for the specified dates of stay
max_value
float
the maximum price
the maximum price of booking a place for the specified dates of stay
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
title
string
title of the place
desription
string
description of the place in SERP
hotel_identifier
string
unique hotel identifier
unique hotel identifier assigned by Google;
example: "CgoIjaeSlI6CnNpVEAE"
domain
string
domain in SERP
url
string
relevant URL
is_paid
boolean
indicates whether the element is an ad
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
type
string
type of element = ‘knowledge_graph’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
sub_title
string
subtitle of the item
description
string
description
card_id
string
card id
url
string
relevant URL
image_url
string
URL of the image from knowledge graph
logo_url
string
URL of the logo from knowledge graph
cid
string
google-defined client id
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘knowledge_graph_images_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
link
object
link of the element
type
string
type of element = ‘link_element ‘
title
string
title of a given link element
url
string
URL
domain
string
domain where a link points
snippet
string
text alongside the link title
xpath
string
the XPath of the element
items
array
contains arrays of specific images
type
string
type of element = ‘knowledge_graph_images_element ‘
url
string
image source URL
domain
string
website domain
alt
string
alt attribute
image_url
string
URL of a specific image
xpath
string
the XPath of the element
type
string
type of element = ‘knowledge_graph_list_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the element
data_attrid
string
google defined data attribute ID
example:
action:listen_artist
link
object
link of the element
type
string
type of element = ‘link_element ‘
title
string
title of a given link element
url
string
URL
domain
string
domain where a link points
snippet
string
text alongside the link title
xpath
string
the XPath of the element
items
array
contains arrays of elements available in the list
type
string
type of element = ‘knowledge_graph_list_element ‘
title
string
title of the element
sub_title
string
subtitle of the element
url
string
URL of element
domain
string
website domain
image_url
string
URL of the image
xpath
string
the XPath of the element
type
string
type of element = ‘knowledge_graph_description_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
text
string
description content
links
array
link of the element
type
string
type of element = ‘link_element ‘
title
string
title of a given link element
url
string
URL
domain
string
domain where a link points
snippet
string
text alongside the link title
xpath
string
the XPath of the element
type
string
type of element = ‘knowledge_graph_row_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the row
data_attrid
string
google defined data attribute ID
example:
ss:/webfacts:net_worth
text
string
row content
links
array
link of the element
type
string
type of element = ‘link_element ‘
title
string
title of a given link element
url
string
URL
domain
string
domain where a link points
snippet
string
text alongside the link title
xpath
string
the XPath of the element
type
string
type of element = ‘knowledge_graph_carousel_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the carousel item
data_attrid
string
google defined data attribute ID
example:
kc:/common/topic:social media presence
link
object
link of the element
type
string
type of element = ‘link_element ‘
title
string
title of a given link element
url
string
URL
domain
string
domain where a link points
snippet
string
text alongside the link title
xpath
string
the XPath of the element
items
array
contains arrays of elements available in the list
type
string
type of element = ‘knowledge_graph_carousel_element ‘
title
string
title of the element
sub_title
string
subtitle of the element
url
string
URL of element
domain
string
website domain
image_url
string
URL of the image
xpath
string
the XPath of the element
type
string
type of element = ‘knowledge_graph_part_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the item
data_attrid
string
google defined data attribute ID
example:
kc:/local:place qa
text
string
content within the item
links
array
link of the element
type
string
type of element = ‘link_element ‘
title
string
title of a given link element
url
string
URL
domain
string
domain where a link points
snippet
string
text alongside the link title
xpath
string
the XPath of the element
type
string
type of element = ‘knowledge_graph_expanded_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the item
data_attrid
string
google defined data attribute ID
example:
kc:/local:place qa
expanded_element
array
link of the element
type
string
type of element = ‘knowledge_graph_expanded_element ‘
featured_title
string
title of a given element
url
string
source URL
domain
string
source domain
title
string
source title
snippet
string
text alongside the title
table
object
table element
table_element
string
name assigned to the table element
possible values:
table_element
table_header
array
column names
table_content
array
the content of the table
one line of the table in this element of the array
type
string
type of element = ‘knowledge_graph_shopping_item ‘
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values;
positions of elements with different type
values are omitted from rank_group
;
always equals 0
for desktop
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
always equals 0
for desktop
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the item
data_attrid
string
google defined data attribute ID
example:
kc:/shopping/gpc:organic-offers
items
array
link of the element
type
string
type of element = ‘knowledge_graph_shopping_element ‘
title
string
title of a given shopping element
url
string
URL
domain
string
domain in url
price
object
price indicated in the element
current
float
current price
refers to the current price indicated in the element
regular
float
regular price
refers to the regular price indicated in the element
max_value
float
the maximum price
refers to the maximum price indicated in the element
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
source
string
web source of the shopping element
indicates the source of information included in the element
snippet
string
description of the shopping element
marketplace
string
merchant account provider
ecommerce site that hosts products or websites of individual sellers under the same merchant account
example:
by Google
marketplace_url
string
URL to the merchant account provider
ecommerce site that hosts products or websites of individual sellers under the same merchant account
type
string
type of element = ‘featured_snippet’
rank_group
integer
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
domain
string
domain in SERP
title
string
title of the result in SERP
featured_title
string
the title of the featured snippets source page
description
string
description of the results element in SERP
url
string
relevant URL
table
array
results table
if there are none, equals null
table_header
array
column names
table_content
array
the content of the table
one line of the table in this element of the array
main_domain
string
primary domain name in SERP
relative_url
string
URL in SERP that does not specify the HTTPs protocol and domain name
etv
float
estimated traffic volume
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and search volume values of the returned keyword
learn more about how the metric is calculated in this help center article
impressions_etv
float
estimated traffic volume based on impressions
estimated organic monthly traffic to the domain
calculated as the product of CTR (click-through-rate) and impression values of the returned keyword
learn more about how the metric is calculated in this help center article
estimated_paid_traffic_cost
float
estimated cost of converting organic search traffic into paid
represents the estimated monthly cost of running ads for the returned keyword
the metric is calculated as the product of organic etv
and paid cpc
values and indicates the cost of driving the estimated volume of monthly organic traffic through PPC advertising in Google Search
learn more about how the metric is calculated in this help center article
rank_changes
array
changes in rankings
ranking changes of the SERP element compared to the preceding month;
Note: the changes are calculated even if the preceding month is not included in a POST request
previous_rank_absolute
integer
previous absolute rank in SERP
indicates previous rank of the element in Google SERP;
if this element is new, the value will be null
is_new
boolean
element was previously present in SERP
if the value is true
, previously collected SERP didn’t contain this element
is_up
boolean
rank of this element went up
if the value is true
, position of the element in SERP is higher compared to the previous check
is_down
boolean
rank of this element went down
if the value is true
, position of the element in SERP is lower compared to the previous check
type
string
type of element = ‘top_stories’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the element in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘top_stories_element ‘
source
string
source of the element
indicates the source of information included in the top_stories_element
domain
string
domain in SERP
title
string
title of the result in SERP
date
string
the date when the page source of the element was published
amp_version
boolean
Accelerated Mobile Pages
indicates whether an item has the Accelerated Mobile Page (AMP) version
timestamp
string
date and time when the result was published
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
url
string
URL
type
string
type of element = ‘twitter’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
url
string
URL
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘twitter _element ‘
tweet
string
tweet message
date
string
the posting date
timestamp
string
date and time when the result was published
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
url
string
URL
type
string
type of element = ‘map’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
url
string
URL
type
string
type of element = ‘google_flights’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
url
string
URL
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘google_flights_element ‘
description
string
description
url
string
URL
type
string
type of element = ‘google_reviews’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
reviews_count
integer
the number of reviews
rating
object
the element’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
integer
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
place_id
string
the identifier of a place
feature
string
the additional feature of the review
cid
string
google-defined client id
unique id of a local establishment;
can be used with Google Reviews API to get a full list of reviews
type
string
type of element = ‘google_posts’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
posts_id
string
the identifier of the google_posts feature
feature
string
the additional feature of the review
cid
string
google-defined client id
unique id of a local establishment;
can be used with Google Reviews API to get a full list of reviews
type
string
type of element = ‘video’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘video_element ‘
source
string
source of the element
indicates the source of the video
title
string
title of the result in SERP
timestamp
string
date and time when the result was published
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
url
string
URL
type
string
type of element = ‘people_also_ask’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘people_also_ask_element ‘
title
string
title of the result in SERP
xpath
string
the XPath of the element
expanded_element
array
expanded element
type
string
type of element = ‘people_also_ask_expanded_element ‘
featured_title
string
title
url
string
relevant URL
domain
string
domain in SERP
title
string
title of the result in SERP
description
string
description of the results element in SERP
timestamp
string
date and time when the result was published
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
table
object
results table
if there are none, equals null
table_header
array
column names
table_content
array
the content of the table
one line of the table in this element of the array
type
string
type of element = ‘images’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
url
string
relevant URL
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘images_element ‘
alt
string
alt tag of the image
url
string
URL of the image resource
the URL leading to the resource where the image is posted
image_url
string
URL to the compressed image
the URL leading to the image thumbnail
related_image_searches
array
contains keywords and images related to the specified search term
if there are none, equals null
type
string
type of element = ‘related_image_searches_element ‘
title
string
title of the element
indicates keyword that may be used with the specified term to refine image search
alt
string
alt tag of the featured image
url
string
original URL of the featured image
the URL leading to the image on the original resource
image_url
string
URL to the compressed featured image
the URL leading to the image on DataForSEO storage
type
string
type of element = ‘shopping’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘shopping_element ‘
title
string
title of the result in SERP
price
object
price of the shopping element
current
float
current price
indicates the current price of the shopping element
regular
float
regular price
indicates the regular price of the shopping element
max_value
float
the maximum price
indicates the maximum price of the shopping element
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
source
string
source of the element
indicates the source of information included in the shopping_element
description
string
the description of the results element in SERP
marketplace
string
merchant account provider
commerce site that hosts products or websites of individual sellers under the same merchant account
example:
by Google
marketplace_url
string
relevant marketplace URL
URL of the page on the marketplace website where the product is hosted
url
string
URL
type
string
type of element = ‘jobs’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
url
string
URL
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘jobs _element ‘
title
string
title of the result in SERP
description
string
description
author
string
author
job_posted_time
string
the time when the job was posted
timestamp
string
date and time when the result was published
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
contract_type
string
contract type
salary
string
salary
url
string
URL
type
string
type of element = ‘events’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
URL
string
URL
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘events_element ‘
title
string
title of the item
description
string
snippet of the element
URL
string
events_element
URL
type
string
type of element = ‘mention_carousel’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘mention_carousel_element ‘
title
string
title of the item
price
object
price of the mention carousel element
current
float
current price
indicates the current price of the mention carousel element
regular
float
regular price
indicates the regular price of the mention carousel element
max_value
float
the maximum price
indicates the maximum price of the mention carousel element
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
mentioned_in
array
additional elements in the mention_carousel
item
type
string
type of element = ‘link_element ‘
title
string
title of the item
snippet
string
snippet of the element
URL
string
link_element
URL
type
string
type of element = ‘recipes’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘recipes_element ‘
title
string
title of the item
url
string
recipes_element
URL
domain
string
domain in SERP
source
string
source of the element
indicates the source of information included in the recipes_element
description
string
snippet of the element
time
string
the total time it takes to prepare the cook the dish
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
type
string
type of element = ‘top_sights’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘top_sights_element ‘
title
string
title of the item
url
string
top_sights_element
URL
description
string
snippet of the element
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
type
string
type of element = ‘scholarly_articles’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the item
url
string
URL of the result in SERP
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘scholarly_articles_element ‘
title
string
title of the item
url
string
scholarly_articles_element
URL
author
string
author
description
string
snippet of the element
type
string
type of element = ‘popular_products’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘popular_products_element ‘
title
string
title of the item
description
string
snippet of the element
price
object
price of the popular products element
current
float
current price
indicates the current price of the popular products element
regular
float
regular price
indicates the regular price of the popular products element
max_value
float
the maximum price
indicates the maximum price of the popular products element
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
type
string
type of element = ‘podcasts’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘podcasts_element ‘
title
string
title of the item
url
string
podcasts_element
URL
description
string
snippet of the element
timestamp
string
date and time when the episode was added
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
time_to_play
string
the total time it will take to play an episode
type
string
type of element = ‘questions_and_answers’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘questions_and_answers_element ‘
url
string
questions_and_answers_element
URL
question_text
string
question included in the item
answer_text
string
answer included in the item
source
string
source of the element
indicates the source of information included in the questions_and_answers_element
domain
string
domain name of the source
type
string
type of element = ‘find_results_on’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘find_results_on_element ‘
title
string
title of the result in SERP
domain
string
domain name of the source
url
string
find_results_on_element
URL
source
string
source of the element
indicates the source of information included in the find_results_on_element
type
string
type of element = ‘‘stocks_box’’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
source
string
source of the element
indicates the source of information provided in the stocks_box
element
snippet
string
snippet of the element
price
object
price quote featured on Google at the time when our API pulled the results
note that stock prices displayed in the stocks_box
element may be delayed according to Google Finance disclaimer
current
float
current price
indicates the current price quote featured on Google at the time when our API pulled the results
regular
float
regular price
indicates the regular price quote featured on Google at the time when our API pulled the results
max_value
float
the maximum price
indicates the maximum price quote featured on Google at the time when our API pulled the results
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
url
string
relevant URL
domain
string
domain in SERP
table
object
results table
if there are none, equals null
table_header
array
column names
if there are none, equals null
table_content
array
the content of the table
additional information about the stock prices displayed below the graph
if there is none, equals null
graph
object
contains data provided in the graph of the element
items
array
data provided for the date and time when our API pulled the results
type
string
type of element = ‘graph_element’
corresponds to one point on the graph that indicates the stock price for a specific date and time
date
string
date and time
in the yyyy-mm-ddThh:mm:ss
ISO 8601 format
indicates date and time for which the stock price in the value
field is provided
value
float
stock price
stock price for the date and time provided in the date
field
previous_items
array
previous close data
contains stock price data based on the preceding time period
type
string
type of element = ‘graph_element’
corresponds to one point on the graph that indicates the stock price for a specific date and time
date
string
date and time
in the yyyy-mm-ddThh:mm:ss
ISO 8601 format
indicates the date and time for which the value
field provides previous close price
for example, "date": "2020-10-28T15:45:00"
and "value": 11080.2857
mean the stock was traded at 11080.2857 on Oct. 27, 2020 at 15:45:00
value
float
previous close price
closing price on the preceding time period
type
string
type of element = ‘visual_stories’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
items
array
contains results featured in the visual_stories
element of SERP
type
string
type of element = ‘visual_stories_element’
title
string
title of the visual story
url
string
relevant URL
domain
string
domain in SERP
type
string
type of element = ‘commercial_units’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
items
array
contains results featured in the commercial_units
element of SERP
type
string
type of element = ‘commercial_units_element’
title
string
title of the commercial unit
url
string
relevant URL
domain
string
domain in SERP
price
object
price indicated in the element
current
float
current price
indicates the current price of the commercial units element
regular
float
regular price
indicates the regular price of the commercial units element
max_value
float
the maximum price
indicates the maximum price of the commercial units element
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
source
string
source of the element
rating
object
the item’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
type
string
type of element = ‘local_services’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
domain
string
domain in SERP
items
array
contains results featured in the local_services
element of SERP
type
string
type of element = ‘local_services_element’
title
string
title of the local services element
url
string
relevant URL
domain
string
domain in SERP
description
string
description of the local services element
rating
object
the element’s rating
the popularity rate based on reviews and displayed in SERP
rating_type
string
the type of rating
here you can find the following elements: Max5
, Percents
, CustomMax
value
float
the value of the rating
votes_count
integer
the amount of feedback
rating_max
integer
the maximum value for a rating_type
image_url
string
URL of the image featured in the element
type
string
type of element = ‘google_hotels’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
hotel_identifier
string
unique hotel identifier
unique hotel identifier assigned by Google;
example: "CgoIjaeSlI6CnNpVEAE"
url
string
URL of the element
type
string
type of element = ‘math_solver’
rank_group
integer
group rank in SERP
position within a group of elements with identical type
values
positions of elements with different type
values are omitted from rank_group
rank_absolute
integer
absolute rank in SERP
absolute position among all the elements in SERP
position
string
the alignment of the element in SERP
can take the following values:
left
, right
xpath
string
the XPath of the element
title
string
title of the result in SERP
result
string
solution to the equation
solution to the mathematical equation specified in the keyword
field when setting a task
items
array
additional items present in the element
if there are none, equals null
type
string
type of element = ‘math_solver_element ‘
title
string
title of the item
expanded_element
array
expanded element
type
string
type of element = ‘math_solver_expanded_element ‘
title
string
title of the element
solution
array
solution of the element
displays steps to solve the mathematical equation as specified in the element
links
array
links featured in the math_solver element
if there are none, equals null
type
string
type of element = ‘link_element ‘
title
string
title of the link element
description
string
description of the link element
url
string
URL