Google Search

Web Scraping API Google Search Target

The google_search target is built to obtain Google Search and Google AI Overview results.

📘

Useful Links

💡

To filter Google search results for specific types of content, set google_tbm parameter to desired output type:

  • News: nws
  • Images: isch
  • Books: bks
  • Patents: pts
  • Video: vid

Input Parameters

Request parameters available for the Google Search target:

Parameter

Type

Required

Description

target

string

Target type must be set to google_search.

query

string

Search query.

headless

string

html value enables JavaScript rendering. Read more. png value enables screenshot response. Read more.

parse

boolean

Automatically parses results when set to true. Default value is false.

geo

string

Set the country to use when submitting the query. Full list of locations available for the Advanced plan can be found here.

locale

string

Set the value to change your Google search page web interface language. Read more.

domain

string

Specify top-level domain. Read more.

device_type

string

Specify device type and browser. Read more.

page_from

string

Customize the starting page number within the range of 1 to 100. Default value is 1.

limit

string

Retrieve a specified number of search results from 1 to 100.
Default value is 10.

google_results_language

string

Return results in a specified language. See all options here .

google_tbm

string

Filter search results for specific types of content (news, apps, videos...). More information here .

google_tbs

string

This parameter contains parameters like limiting/sorting results by date. More information here . Example: qdr:w (results from last week).

google_nfpr

boolean

Turns off spelling auto-correction when set to true.
Default value is false.

google_safe_search

boolean

Hides explicit results when set to true.
Default value is false.

xhr

boolean

Set to true to retrieve a list of XHR and fetch requests. Read more.
Default value is false.

markdown

boolean

Set to true to receive a Markdown response. Read more.
Default value is false.

Request Examples

curl --request 'POST' \
        --url 'https://scraper-api.decodo.com/v2/scrape' \
        --header 'Accept: application/json' \
        --header 'Authorization: Basic TOKEN VALUE' \ // update with your authorization token
        --header 'Content-Type: application/json' \
        --data '
    {
      "target": "google_search",
      "query": "pizza",
      "headless": "html",
      "page_from": "1",
      "limit": "7",
      "google_results_language": "en",
      "parse": true,
      "page_count": 1
    }
'

const scrape = async() => {
  const response = await fetch("https://scraper-api.decodo.com/v2/scrape", {
    method: "POST",
    body: JSON.stringify({
      "target": "google_search",
      "query": "pizza",
      "headless": "html",
      "page_from": "1",
      "limit": "7",
      "google_results_language": "en",
      "parse": true,
      "page_count": 1
    }),
    headers: {
      "Content-Type": "application/json",
      "Authorization": "Basic TOKEN VALUE" // update with your authorization token
    },
  }).catch(error => console.log(error));

  console.log(await response.json())
}

scrape()
import requests
  
url = "https://scraper-api.decodo.com/v2/scrape"
  
payload = {
      "target": "google_search",
      "query": "pizza",
      "headless": "html",
      "page_from": "1",
      "limit": "7",
      "google_results_language": "en",
      "parse": True,
      "page_count": 1
}
  
headers = {
    "accept": "application/json",
    "content-type": "application/json",
    "authorization": "Basic TOKEN VALUE" # update with your authorization token
}
  
response = requests.post(url, json=payload, headers=headers)
  
print(response.text)

Output

Descriptions for fields in the parsed JSON results section are provided in the table below. Keep in mind that the amount of fields can vary according to the provided search query.

Results keyDescription
plaAn object of product ads with their detailed information.
paidAn array of sponsored results with their detailed information.
imagesAn object of an image results in its detailed information.
flightsAn object of flights with their detailed information.
organicAn array of organic listings with their detailed information.
organic_videosAn array of organic videos with their detailed information.
top_sightsAn array of landmarks or attractions with their detailed information.
jobsAn object of jobs with their detailed information.
local_service_adsAn object of sponsored local service providers.
video_boxAn object of a video item with detailed information.
recipesAn object of recipes with detailed information.
twitterAn array of X (previously Twitter) results with detailed information.
knowledgeAn object of information gathered from the knowledge panel.
local_packAn object of local business listings relevant to the query.
item_carouselAn object of illustrative items for informational queries with detailed information.
videosAn object of videos with detailed information.
hotelsAn object of hotels relevant to the location of a query.
appsAn array of applications with detailed information.
financeAn object of financial data for companies, including stock prices, market capitalization, and other essential metrics.
sports_gamesAn object of recent sports events, including scores, teams, game types, and key highlights
discussions_and_forumsAn object of discussion threads and forum posts, including their URLs, titles, sources, and comment counts.
featured_snippetAn array of specific results retrieved from the organic part of the results page.
top_storiesAn object of articles with their detailed information when a query is identified as news-oriented.
popular_productsAn object of organic displays of Google Shopping product listings with detailed information.
related_searchesAn array of one or more related searches blocks displayed at various positions on the search results page.
related_questionsAn object of related question-based search queries, along with detailed information.
what_people_are_sayingAn array of discussion threads and forum posts, including their URLs, titles, sources, top comments, engagement metrics, and timeframes."
search_informationAn object of information related to the submitted search query.
Response Example
{
  "results": {
      "url": "https://www.google.com/search?q=pizza&lr=lang_en&uule=w+CAIQICINdW5pdGVkIHN0YXRlcw&gl=us&hl=en&sei=rbwdabjfGrS35OUP-vLe-Qo",
      "page": 1,
      "results": {
          "paid": [],
          "organic": [
              {
                  "pos": 1,
                  "url": "https://www.pizzahut.com/",
                  "desc": "Discover classic & new menu items, find deals and enjoy seamless ordering for delivery and carryout. No One OutPizzas the Hut®.",
                  "title": "Pizza Hut | Delivery & Carryout - No One OutPizzas The Hut!",
                  "url_shown": "https://www.pizzahut.com",
                  "pos_overall": 3,
                  "favicon_text": "Pizza Hut"
              },
              {
                  "pos": 2,
                  "url": "https://en.wikipedia.org/wiki/Pizza",
                  "desc": "Pizza is an Italian, specifically Neapolitan, dish typically consisting of a flat base of leavened wheat-based dough topped with tomato, cheese, and other ...",
                  "title": "Pizza",
                  "url_shown": "https://en.wikipedia.org› wiki › Pizza",
                  "pos_overall": 4,
                  "favicon_text": "Wikipedia"
              },
              {
                  "pos": 3,
                  "url": "https://www.dominos.com/",
                  "desc": "PRICES HIGHER FOR SOME LOCATIONS. Treat yo self to our best, most premium medium Specialty Pizzas for just $9.99 each when you Mix & Match.",
                  "title": "Domino's: Pizza Delivery & Carryout, Pasta, Wings & More",
                  "url_shown": "https://www.dominos.com",
                  "pos_overall": 5,
                  "favicon_text": "Domino's"
              },
              {
                  "pos": 4,
                  "url": "https://www.papajohns.com/",
                  "desc": "Enjoy the ease of ordering delicious pizza for delivery or carryout from a Papa Johns near you. Start tracking the speed of your delivery and earn rewards ...",
                  "title": "Papa Johns Pizza Delivery & Carryout - Best Deals on Pizza ...",
                  "url_shown": "https://www.papajohns.com",
                  "pos_overall": 7,
                  "favicon_text": "Papa John's Pizza"
              },
              {
                  "pos": 5,
                  "url": "https://www.hellopizza.com/",
                  "desc": "Hello Pizza in Minneapolis offers dine in, takeaway and delivery.",
                  "title": "Home | Hello Pizza in Edina, MN",
                  "images": [
                      "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT2K0fe4r_e0X_q3ijPJKuQWN-LaKhDS1ZS3q8z-c-YBKR5jV6GYSLB&usqp=CAE&s"
                  ],
                  "url_shown": "https://www.hellopizza.com",
                  "pos_overall": 8,
                  "favicon_text": "Hello Pizza"
              },
              {
                  "pos": 6,
                  "url": "https://www.marcos.com/",
                  "desc": "Order Marco's Pizza delivery or carryout. Enjoy fresh ingredients, scratch-made dough, and signature cheeses from one of America's fastest-growing pizza ...",
                  "title": "Marco's Pizza Online Ordering",
                  "url_shown": "https://www.marcos.com",
                  "pos_overall": 9,
                  "favicon_text": "Marco's Pizza"
              },
              {
                  "pos": 7,
                  "url": "https://www.pizzamyheart.com/",
                  "desc": "Pizza by the slice or whole pie with a focus on natural locally grown ingredients from California farms. Fresh salads, craft beers and a laid-back surf ...",
                  "title": "Pizza My Heart for pizza by the slice or whole pie",
                  "url_shown": "https://www.pizzamyheart.com",
                  "pos_overall": 10,
                  "favicon_text": "Pizza My Heart"
              },
              {
                  "pos": 8,
                  "url": "https://www.reddit.com/r/Pizza/",
                  "desc": "r/Pizza: The home of pizza on reddit. An educational community devoted to the art of pizza making.",
                  "title": "r/Pizza",
                  "images": [
                      "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRVZ5l6u3Wt2-glE2ODdoWwuBrtmkH3em1TIxhOM-gjaT1d4-34vnrz&usqp=CAE&s"
                  ],
                  "url_shown": "1.9M+ followers",
                  "pos_overall": 11,
                  "favicon_text": "Reddit · r/Pizza"
              },
              {
                  "pos": 9,
                  "url": "https://www.cpk.com/",
                  "desc": "Featuring hand-tossed pizzas, a seasonally-inspired menu, hand-shaken cocktails, premium wines & craft beers and more! Only at California Pizza Kitchen!",
                  "title": "California Pizza Kitchen",
                  "images": [
                      "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRJksekoqLHL4KXILruEM9w84zJdpHx4WubpUt39pA&usqp=CAE&s"
                  ],
                  "url_shown": "https://www.cpk.com",
                  "pos_overall": 12,
                  "favicon_text": "California Pizza Kitchen"
              },
              {
                  "pos": 10,
                  "url": "https://godfathers.com/",
                  "desc": "This place is really a 10 out of 5 stars!! Just incredible pizza and cheese sticks!! I'm not sure when they moved to the new place but it's extremely nice and ...",
                  "title": "Godfather's Pizza: Home",
                  "url_shown": "https://godfathers.com",
                  "pos_overall": 13,
                  "favicon_text": "Godfather's Pizza"
              }
          ],
          "knowledge": {
              "title": "Pizza",
              "factoids": [
                  {
                      "links": [
                          {
                              "href": "/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&q=Italy&si=AMgyJEvmed8FkyEkpEJ8jfGhZkakcy5kQho_c4G-QJRdklshMgA8pFHRvByY9K-Kx6NobqSuBsQb_47qNUnyqy8BB9KLtNWUPubZmE47LPoBos-bReZggawlo2WiLoOr46ExKgri247nOvaBRpxGaZ2wnvJjR9nsANgzNkX5shPkvvTb0AYM3FtMCQDVt4mT1nUwxKBeylKn&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0QmxN6BAgQEAI",
                              "title": "Italy"
                          }
                      ],
                      "title": "Origin",
                      "content": "Italy"
                  }
              ],
              "subtitle": "Dish"
          },
          "local_pack": {
              "items": [
                  {
                      "pos": 1,
                      "title": "Giovanni's Pizzeria",
                      "rating": 4.6,
                      "address": "Albuquerque, NM",
                      "subtitle": "Pizza",
                      "rating_count": 1400
                  },
                  {
                      "pos": 2,
                      "title": "Palazzo Di Pizza",
                      "rating": 4.8,
                      "address": "Royal Oak, MI",
                      "subtitle": "Pizza",
                      "rating_count": 560
                  },
                  {
                      "pos": 3,
                      "title": "JC's New York Pizza Department",
                      "rating": 4.1,
                      "address": "Albuquerque, NM",
                      "subtitle": "Pizza",
                      "rating_count": 1900
                  }
              ],
              "pos_overall": 2
          },
          "ai_overviews": [
              {
                  "bullet_list": [
                      {
                          "pos": 1,
                          "points": [
                              "#1 Pizza Chain: Domino's holds the top spot globally and in the U.S. based on sales revenue.",
                              "Growth Strategy: Its success is attributed to a strong emphasis on delivery and carryout, a sophisticated tech stack, and a global franchise strategy.",
                              "Market Dominance: Domino's has a significant market share, with its 2023 U.S. system sales reaching approximately $9 billion.",
                              "#1 Pizza Type: While Domino's is the top-selling chain, pepperoni remains the most popular type of pizza ordered in the United States."
                          ],
                          "list_title": "Domino's is the #1 selling pizza chain globally, known for its large market share, extensive delivery network, and focus on technology for ordering and tracking."
                      },
                      {
                          "pos": 2,
                          "points": [
                              "Deal: $5 for one Crafted Flatzz personal pizza.",
                              "Time limit: Available until 5 p.m.",
                              "Flavors: Nashville Hot Chicken Pepperoni Duo Three Cheese Ultimate Chicken Bacon Ranch",
                              "Nashville Hot Chicken",
                              "Pepperoni Duo",
                              "Three Cheese",
                              "Ultimate",
                              "Chicken Bacon Ranch",
                              "Details: Additional charges apply for extra toppings and cheese.",
                              "Note: Prices and participation can vary by location."
                          ],
                          "list_title": "The Pizza Hut $5 deal is for their Crafted Flatzz personal pizzas, available for $5 until 5 p.m. each day at participating locations."
                      }
                  ],
                  "pos_overall": 1,
                  "source_panel": {
                      "items": [
                          {
                              "pos": 1,
                              "url": "https://www.restroworks.com/blog/pizza-restaurant-chains-statistics/#:~:text=footprint%20in%202025.-,1.,Pizza%20Hut",
                              "title": "Pizza Restaurant Chains Statistics – Industry Data, Growth & Market ...",
                              "source": "Restroworks",
                              "description": "Jun 3, 2025 — 1. Dominos. Domino's remains the undisputed leader in the global pizza chain market. Its success comes from a strong fo..."
                          },
                          {
                              "pos": 2,
                              "url": "https://pequodspizza.com/blog/what-is-the-most-popular-type-of-pizza-in-america/#:~:text=However%2C%20according%20to%20a%20survey,pizza%20in%20the%20United%20States.",
                              "title": "What is the Most Popular Type of Pizza in America?",
                              "source": "Pequod's Pizza",
                              "description": "However, according to a survey by YouGov America, pepperoni pizza is by far the most ordered pizza in the United States."
                          },
                          {
                              "pos": 3,
                              "url": "https://www.loginextsolutions.com/blog/what-makes-dominos-the-no-1-pizza-company-in-the-world/#:~:text=Domino's%20Still%20the%20King%20of,picking%20up%20their%20own%20orders.",
                              "title": "Why Domino's is the No.1 Pizza Company Worldwide - LogiNext",
                              "source": "LogiNext",
                              "description": "Domino's Still the King of Quick Service Pizza Chain: As per a Bloomberg report, Domino's accounted for 42% of pizza sales in the ..."
                          },
                          {
                              "pos": 4,
                              "url": "https://www.restaurantbusinessonline.com/financing/10-largest-pizza-chains-us",
                              "title": "The 10 largest pizza chains in the U.S.",
                              "source": "Restaurant Business Magazine",
                              "description": "Jun 13, 2024 —  The 10 largest pizza chains in the U.S. * Domino's. 2023 U.S. system sales: $9 billion. Up 3.1% Unit count: 6,854. Up..."
                          },
                          {
                              "pos": 5,
                              "url": "https://www.locationscloud.com/research-report/largest-pizza-chains-in-the-usa-location-analysis/#:~:text=in%20the%20USA.-,Domino's,the%20most%20Domino's%20locations%20nationwide.",
                              "title": "The Largest Pizza Chains in the US in 2025 - Location Analysis",
                              "source": "LocationsCloud",
                              "description": "Mar 18, 2024 — Domino's. Being one of the first pizza restaurants to concentrate on home delivery—a method that has grown in populari..."
                          },
                          {
                              "pos": 6,
                              "url": "https://www.yahoo.com/lifestyle/articles/no-1-pizza-chain-u-215658249.html#:~:text=As%20for%20which%20one%20people,find%20the%20full%20list%20here.",
                              "title": "The No. 1 Pizza Chain in the U.S., According to a Study - Yahoo",
                              "source": "Yahoo",
                              "description": "Jul 3, 2025 — As for which one people prefer most, Stacker has you covered with that answer. Recently, Stacker reviewed PMQ Pizza Mag..."
                          },
                          {
                              "pos": 7,
                              "url": "https://www.restaurantbusinessonline.com/dominos-increasingly-dominates-fast-food-pizza-market#:~:text=Domino's%20only%20surpassed%20Pizza%20Hut,%2Dlargest%20pizza%20chains%2C%20combined.",
                              "title": "Domino's increasingly dominates the fast-food pizza market",
                              "source": "Restaurant Business Magazine",
                              "description": "Oct 17, 2025 — Domino's only surpassed Pizza Hut to become the largest pizza chain in the U.S. by system sales in 2017. By 2019 it wa..."
                          },
                          {
                              "pos": 8,
                              "url": "https://www.pizzahut.com/c/content/crafted-flatzz#:~:text=Crafted%20Flatzz%E2%84%A2%20%2D%20$5%20Pizza,tip%20&%20delivery%20fees%20not%20included.",
                              "title": "Crafted Flatzz™ - $5 Pizza - Pizza Hut",
                              "source": "Pizza Hut",
                              "description": "Crafted Flatzz™ - $5 Pizza | Pizza Hut. Crafted Flatzz™ Experience Crafted Flatzz, a different way to satisfy your Pizza Hut cravi..."
                          },
                          {
                              "pos": 9,
                              "url": "https://www.facebook.com/snachwithzach/videos/pizza-hut-is-running-a-second-crazy-deal-right-now-in-the-form-of-its-5-crafted-/1055519493461144/#:~:text=17%F3%B0%9E%8B%F3%B1%9F%A0-,Pizza%20Hut%20is%20running%20a%20second%20crazy%20deal%20right%20now,nashvillehot%20%23ranch%20%23pizzatime%20%23eatingfortheinsta",
                              "title": "Pizza Hut is running a second crazy deal right now in the form of its ...",
                              "source": "Facebook",
                              "description": "Aug 17, 2025 — Pizza Hut is running a second crazy deal right now in the form of its $5 Crafted Flatzz. The flatbread(ish?)-style piz..."
                          },
                          {
                              "pos": 10,
                              "url": "https://www.foodandwine.com/pizza-hut-crafted-flatzz-global-menu-11793992#:~:text=%22Crafted%20Flatzz%20represent%20an%20unprecedented,as%20well%20as%20good%20times.%22&text=Pizza%20Hut%20also%20shared%20that,p.m.%20So%20treat%20yourself%20early.",
                              "title": "Pizza Hut Drops $5 Crafted Flatzz With Global Flavors - Food & Wine",
                              "source": "Food & Wine",
                              "description": "Aug 20, 2025 — \"Crafted Flatzz represent an unprecedented moment for Pizza Hut,\" Aaron Powell, the CEO of Pizza Hut, shared. \"No matt..."
                          },
                          {
                              "pos": 11,
                              "url": "https://www.facebook.com/PizzaHutKilleenSClearCreekRoad/posts/fast-fresh-and-5-our-new-5-flatzz-are-herewhere-else-can-you-find-a-filling-meal/1209471007890535/#:~:text=29%F3%B0%9E%8B%F3%B1%9F%A0-,Fast%2C%20fresh%20and%20$5%2D%20Our%20new%20$5%20Flatzz%20are%20HERE,at%20any%20Pizza%20Hut%20location",
                              "title": "Fill up for $5 before 5:00PM at any Pizza Hut location - Facebook",
                              "source": "Facebook",
                              "description": "Aug 29, 2025 — Fast, fresh and $5- Our new $5 Flatzz are HERE! Where else can you find a filling meal for $5? NO WHERE! Tastiest lunc..."
                          }
                      ]
                  }
              }
          ],
          "related_searches": [
              {
                  "pos_overall": 14,
                  "related_searches": [
                      "Pizza Hut near me",
                      "Pizza wiki",
                      "Pizza Hut menu",
                      "Pizza open",
                      "Pizza picture",
                      "Pizza movie",
                      "Pizza drawing",
                      "Pizza recipe"
                  ],
                  "related_searches_urls": [
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+Hut+near+me&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhoEAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+wiki&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAh1EAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+Hut+menu&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhzEAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+open&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhxEAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+picture&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhwEAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+movie&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhvEAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+drawing&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhrEAE",
                      "https://www.google.com/search?lr=lang_en&sca_esv=3d3223ebd0a7bab1&gl=us&hl=en&tbs=lr:lang_1en&q=Pizza+recipe&sa=X&ved=2ahUKEwj97aeCoP6QAxVNILkGHee3BE0Q1QJ6BAhpEAE"
                  ]
              }
          ],
          "related_questions": {
              "items": [
                  {
                      "pos": 1,
                      "answer": "Sitting out at Room Temperature The United States Department of Agriculture (USDA) strongly recommends following the “two-hour rule” when leaving food out, meaning you shouldn't let pizza or takeout sit at room temperature for over two hours before tossing it.Jan 29, 2025",
                      "source": {
                          "url": "https://greenlanternpizza.com/blog/how-long-does-pizza-last/#:~:text=Sitting%20out%20at%20Room%20Temperature,-How%20long%20can&text=The%20United%20States%20Department%20of,two%20hours%20before%20tossing%20it.",
                          "title": "How Long Does Pizza Last in the Fridge vs. Freezer",
                          "url_shown": "Green Lantern Pizza"
                      },
                      "question": "What's the 2 hour rule for pizza?"
                  },
                  {
                      "pos": 2,
                      "answer": "Domino's is the #1 selling pizza chain globally, known for its large market share, extensive delivery network, and focus on technology for ordering and tracking. It has been the top seller for several years, consistently surpassing competitors like Pizza Hut, Little Caesars, and Papa John's in sales revenue. The most popular type of pizza in the United States, however, is consistently pepperoni.",
                      "question": "What is the #1 selling pizza?"
                  },
                  {
                      "pos": 3,
                      "answer": "The 3/8 rule for pizzas suggests ordering 3/8 of a pizza per person, especially for larger groups. This means that roughly three slices (or 3/8 of a pizza) should be enough for each guest. To use this rule, multiply the number of people by 3/8 to estimate how many pizzas you'll need.",
                      "source": {
                          "url": "https://www.instacart.com/company/ideas/pizza-calculator/#:~:text=The%203%2F8%20rule%20for%20pizzas%20suggests%20ordering%203%2F8,many%20pizzas%20you'll%20need.",
                          "title": "Pizza Calculator: How Many Pizzas To Buy or Make - Instacart",
                          "url_shown": "Instacart"
                      },
                      "question": "What is the 3/8 rule for pizza?"
                  },
                  {
                      "pos": 4,
                      "answer": "The Pizza Hut $5 deal is for their Crafted Flatzz personal pizzas, available for $5 until 5 p.m. each day at participating locations. These flatbread-style pizzas come in five flavors: Nashville Hot Chicken, Pepperoni Duo, Three Cheese, Ultimate, and Chicken Bacon Ranch. Pricing may vary after 5 p.m., and extra toppings/cheese will incur an additional charge.",
                      "question": "What is the $5 deal at Pizza Hut?"
                  }
              ],
              "pos_overall": 6
          },
          "search_information": {
              "query": "pizza",
              "geo_location": "United States",
              "showing_results_for": "pizza",
              "total_results_count": 945000000,
              "time_taken_displayed": null,
              "no_results_for_original_query_found": false
          },
          "total_results_count": 945000000
      },
      "last_visible_page": 10,
      "parse_status_code": 12000
  },
  "errors": [],
  "status_code": 12000,
  "task_id": "7396892161859404801"
}

Support

Still can't find an answer? Want to say hi? We take pride in our 24/7 customer support. Alternatively, you can reach us via our support email at [email protected].

Feedback

Something's missing? Request an article!
Got feedback? Let us know how we're doing and what can be improved.