Google Direct Answer Box API

Google searches that may be answered directly appear as direct answers boxes. SerpApi is able to scrape, extract, and make sense of several kinds of answer boxes. Contact us if an answer box you are looking for is not supported yet.

API Examples

JSON structure overview

{
  ...
  "answer_box": [
    {
      "type": "String - Type of answer box (calculator, organic result, converter, etc.)",
      "result": "String - When the answer box can be inlined, the actual answer."
    },
  ],
  ...
}

Calculator Answer Box

Calculator Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "calculator_result",
    "result": "3.141592653589793"
  },
  ...
}

Alternative layout for Calculator Answer Box

Alternative layout for Calculator Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "calculator_result",
    "result": "23.5384615 miles per hour"
  },
  ...
}

Weather Answer Box

Weather Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "weather_result",
    "temperature": "83",
    "unit": "Fahrenheit",
    "precipitation": "1%",
    "humidity": "59%",
    "wind": "7 mph",
    "location": "Dallas, TX",
    "date": "Monday 5:00 AM",
    "weather": "Clear",
    "thumbnail": "https://ssl.gstatic.com/onebox/weather/64/sunny.png",
    "forecast": [
      {
        "day": "Monday",
        "weather": "Sunny",
        "temperature": {
          "high": "101",
          "low": "79"
        },
        "thumbnail": "https://ssl.gstatic.com/onebox/weather/48/sunny.png",
        "precipitation": "1%",
        "humidity": "59%",
        "wind": "7 mph"
      },
      {
        "day": "Tuesday",
        "weather": "Sunny",
        "temperature": {
          "high": "103",
          "low": "80"
        },
        "thumbnail": "https://ssl.gstatic.com/onebox/weather/48/sunny.png",
        "precipitation": "1%",
        "humidity": "58%",
        "wind": "8 mph"
      },
      {
        "day": "Wednesday",
        "weather": "Sunny",
        "temperature": {
          "high": "103",
          "low": "80"
        },
        "thumbnail": "https://ssl.gstatic.com/onebox/weather/48/sunny.png",
        "precipitation": "0%",
        "humidity": "62%",
        "wind": "10 mph"
      },
      ...
    ],
    "hourly_forecast": [
      {
        "time": "Monday 5:00 AM",
        "thumbnail": "https://ssl.gstatic.com/onebox/weather/64/sunny.png",
        "weather": "Sunny",
        "temperature": "82",
        "precipitation": "1%",
        "humidity": "59%",
        "wind": "7 mph"
      },
      {
        "time": "Monday 6:00 AM",
        "thumbnail": "https://ssl.gstatic.com/onebox/weather/64/sunny.png",
        "weather": "Sunny",
        "temperature": "83",
        "precipitation": "1%",
        "humidity": "59%",
        "wind": "7 mph"
      },
      {
        "time": "Monday 7:00 AM",
        "thumbnail": "https://ssl.gstatic.com/onebox/weather/64/sunny.png",
        "weather": "Sunny",
        "temperature": "81",
        "precipitation": "1%",
        "humidity": "59%",
        "wind": "7 mph"
      },
      ...
    ],
    "precipitation_forecast": [
      {
        "precipitation": "0%",
        "day": "Monday",
        "time": "5:00 AM"
      },
      {
        "precipitation": "0%",
        "day": "Monday",
        "time": "6:00 AM"
      },
      {
        "precipitation": "0%",
        "day": "Monday",
        "time": "7:00 AM"
      },
      ...
    ],
    "wind_forecast": [
      {
        "angle": 77,
        "direction": "From south",
        "speed": "5 mph",
        "time": "6 AM"
      },
      {
        "angle": 76,
        "direction": "From south",
        "speed": "9 mph",
        "time": "9 AM"
      },
      {
        "angle": 88,
        "direction": "From south",
        "speed": "10 mph",
        "time": "12 PM"
      },
      ...
    ]
  },
  ...
}

Weather Answer Box in mobile

For some searches, the weather answer box is displayed in different layout.

Weather Answer Box in mobile

JSON Example

{
  ...
  "answer_box": {
    "type": "weather_result",
    "temperature": "74",
    "unit": "Fahrenheit",
    "weather": "Partly cloudy",
    "precipitation": "20%",
    "wind": "5 mph",
    "humidity": "77%",
    "thumbnail": "<Image URL>",
    "forecast": [
      {
        "day": "Wed",
        "weather": "Showers",
        "temperature": {
          "high": "74",
          "low": "69"
        },
        "thumbnail": "<Image URL>"
      },
      {
        "day": "Thu",
        "weather": "Mostly cloudy",
        "temperature": {
          "high": "86",
          "low": "73"
        },
        "thumbnail": "<Image URL>"
      },
      {
        "day": "Fri",
        "weather": "Scattered thunderstorms",
        "temperature": {
          "high": "84",
          "low": "71"
        },
        "thumbnail": "<Image URL>"
      },
      ...
    ],
    "hourly_forecast": [
      {
        "time": "NOW",
        "thumbnail": "<Image URL>",
        "weather": "Partly cloudy",
        "temperature": "74"
      },
      {
        "time": "1 AM",
        "thumbnail": "<Image URL>",
        "weather": "Mostly cloudy",
        "temperature": "74"
      },
      {
        "time": "2 AM",
        "thumbnail": "<Image URL>",
        "weather": "Cloudy",
        "temperature": "73"
      },
      ...
      {
        "time": "4 AM",
        "thumbnail": "<Image URL>",
        "weather": "Chance of showers",
        "temperature": "71",
        "precipitation": "30%"
      },
      ...
    ],
    "precipitation_forecast": [
      {
        "precipitation": "20%",
        "time": "NOW",
        "amount": "<0.01",
        "droplet": "empty droplet",
        "droplet_thumbnail": "https://ssl.gstatic.com/weather/osrp_icons/ic_droplet_clear_light.svg"
      },
      {
        "precipitation": "20%",
        "time": "1 AM",
        "amount": "<0.01",
        "droplet": "empty droplet",
        "droplet_thumbnail": "https://ssl.gstatic.com/weather/osrp_icons/ic_droplet_clear_light.svg"
      },
      {
        "precipitation": "20%",
        "time": "2 AM",
        "amount": "<0.01",
        "droplet": "empty droplet",
        "droplet_thumbnail": "https://ssl.gstatic.com/weather/osrp_icons/ic_droplet_clear_light.svg"
      },
      ...
    ],
    "wind_forecast": [
      {
        "speed": "5 mph",
        "thumbnail": "https://ssl.gstatic.com/weather/osrp_icons/wind_2.svg",
        "angle": 55,
        "direction": "Southeast",
        "time": "NOW"
      },
      {
        "speed": "6 mph",
        "thumbnail": "https://ssl.gstatic.com/weather/osrp_icons/wind_2.svg",
        "angle": 67,
        "direction": "Southeast",
        "time": "1 AM"
      },
      {
        "speed": "5 mph",
        "thumbnail": "https://ssl.gstatic.com/weather/osrp_icons/wind_2.svg",
        "angle": 76,
        "direction": "Southeast",
        "time": "2 AM"
      },
      ...
    ],
    "humidity_forecast": [
      {
        "humidity": "77%",
        "time": "NOW"
      },
      {
        "humidity": "78%",
        "time": "1 AM"
      },
      {
        "humidity": "79%",
        "time": "2 AM"
      },
      ...
    ]
  },
  ...
}

Finance Answer Box

Finance Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "finance_results",
    "title": "Netflix Inc",
    "exchange": "NASDAQ",
    "stock": "NFLX",
    "currency": "USD",
    "price": 512.74,
    "price_movement": {
      "price": 3.92,
      "percentage": 0.77,
      "movement": "Up",
      "date": "today"
    },
    "market": {
      "closed": true,
      "date": "Jun 24, 5:43 AM EDT",
      "trading": "Pre-market",
      "price": 515.56,
      "price_movement": {
        "price": 2.82,
        "percentage": 0.55,
        "movement": "Up"
      }
    },
    "previous_close": 508.82,
    "table": [
      {
        "name": "Open",
        "value": 508.48
      },
      {
        "name": "High",
        "value": 516.63
      },
      {
        "name": "Low",
        "value": 508.2
      },
      ...
    ],
    "link": "https://www.google.com/finance/quote/NFLX:NASDAQ?sa=X&ved=2ahUKEwjm2c6ajLDxAhUDba0KHRIBDgkQ3ecFMAB6BAgXEBI",
    "serpapi_link": "https://serpapi.com/search.json?engine=google_finance&hl=en&q=NFLX:NASDAQ"
  },
  ...
}

Population Answer Box

Population Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "population_result",
    "place": "New York",
    "population": "8.419 million",
    "year": "2019",
    "other": [
      {
        "place": "Los Angeles",
        "population": "3.967 million"
      },
      {
        "place": "Chicago",
        "population": "2.71 million"
      }
    ],
    "sources": [
      {
        "name": "United States Census Bureau",
        "link": "https://www.census.gov/data/developers/data-sets/acs-5year.html"
      }
    ]
  },
  ...
}

Converter Answer Box

Converter Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "currency_converter",
    "result": "112.79 United States Dollar",
    "price": 112.79,
    "currency": "United States Dollar",
    "date": "Dec 6, 6:04 PM UTC",
    "currency_converter": {
      "from": {
        "price": 100,
        "currency": "Euro"
      },
      "to": {
        "price": 112.79,
        "currency": "United States Dollar"
      }
    },
    "chart": [
      {
        "price": 1.15515,
        "time": "2021-11-06 23:58 PM",
        "unix_time": 1636243080
      },
      {
        "price": 1.15687,
        "time": "2021-11-07 23:58 PM",
        "unix_time": 1636329480
      },
      {
        "price": 1.15875,
        "time": "2021-11-08 23:58 PM",
        "unix_time": 1636415880
      },
      ...
    ]
  },
 }

Flights Answer Box

Flights Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "google_flights",
    "title": "Flights to Orlando, FL",
    "ad": "Save $106 – Nonstop flights from $697 if you fly to Tampa (TPA)",
    "flights": [
      {
        "link": "https://www.google.com/flights?num=100&source=flun&uitype=cuAA&hl=en&gl=us&curr=USD&tfs=CAEQAhotEgoyMDIyLTAxLTIwKAAyAkFBagsIAhIHL20vMHZ6bXIMCAISCC9tLzBwbHkwGi0SCjIwMjItMDEtMjQoADICQUFqDAgCEggvbS8wcGx5MHILCAISBy9tLzB2em1IBHpoQ2pSSVMxTnNWMmh4VHpFemVqUkJSWFJSVkVGQ1J5MHRMUzB0TFMwdExYbHpZbXMwTWtGQlFVRkJSMGhOVUdaUlRubFhOVUZCRWdOdVFVRWFDd2lzOHdRUUFob0RWVk5FT0FOd3JQTUU&sa=X&ved=2ahUKEwjolIDj64j1AhWFj4kEHUdODDUQ1RUoAHoECAcQLg",
        "icon": "https://serpapi.com/searches/61cc3df4e7d08a5fe565689c/images/7a45069d8927456ed6614256f8110301d65a1575461a537a0bf372bd965721c1.png",
        "flight_info": [
          "American",
          "2h 32m",
          "Nonstop",
          "from $803"
        ]
      }
    ],
    "link": "https://www.google.com/flights?num=100&source=flun&uitype=cuAA&hl=en&gl=us&curr=USD&tfs=CAEQAhonEgoyMDIyLTAxLTIwagsIAhIHL20vMHZ6bXIMCAISCC9tLzBwbHkwGicSCjIwMjItMDEtMjRqDAgCEggvbS8wcGx5MHILCAISBy9tLzB2em1IBHpoQ2pSSVMxTnNWMmh4VHpFemVqUkJSWFJSVkVGQ1J5MHRMUzB0TFMwdExYbHpZbXMwTWtGQlFVRkJSMGhOVUdaUlRubFhOVUZCRWdOdVFVRWFDd2lzOHdRUUFob0RWVk5FT0FOd3JQTUU",
    "search_information": {
      "trip_type": "Round Trip",
      "non_stop": true,
      "booking_class": "First",
      "from": {
        "departing_place": "Austin, TX",
        "departing_airport": "AUS"
      },
      "to": {
        "arriving_place": "Orlando, FL",
        "arriving_airport": "All Airports"
      }
    },
    "cheapest_flights": [
      {
        "departure_date": "2021-12-30",
        "return_date": "2022-01-03",
        "price": "$1,081",
        "percentage_of_highest_price": 95.32628,
        "booking_class": "T"
      },
      {
        "departure_date": "2021-12-31",
        "return_date": "2022-01-04",
        "price": "$1,081",
        "percentage_of_highest_price": 95.32628,
        "booking_class": "F"
      },
      {
        "departure_date": "2022-01-01",
        "return_date": "2022-01-05",
        "price": "$1,037",
        "percentage_of_highest_price": 91.44621000000001,
        "booking_class": "S"
      },
    ...
    ],
  }
  ...
}

Flight Duration Answer Box

Flight Duration Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "flight_duration",
    "duration": "5h 10m",
    "stops": "Nonstop flight",
    "direction": "Seattle, WA (SEA) to New York, NY (all airports)"
  }
  ...
}

Hotels Answer Box

Hotels Answer Box

JSON Example

{
  ...
   "answer_box": {
    "type": "hotels",
    "query": {
      "location": "Boston, MA",
      "days": [
        "Wed, Nov 24",
        "Thu, Nov 25"
      ],
      "people": 2
    },
    "hotels": [
      {
        "link": "https://www.google.com/travel/hotels/Boston/entity/CgoI7Lu82-XY3ZQdEAE?g2lb=4306835,4258168,4640247,4401769,4659631,4317915,4371335,4659204,2502548,2503781,4518326,4624411,4605861,2503771,4641139,4419364,4644940,4597339,4270442,4644488,4570331,4596364,4284970,4270859,4291517&hl=en-US&gl=us&ssta=1&ap=aAE&grf=Er8ICiwIDhIoEiZyJCoiCgcI5Q8QCxgYEgcI5Q8QCxgZIAAwHkDKAkoHCOUPEAsYEBILCCkoAToF0gICCAESCggNKAE6BGoCCAESCggHKAE6BDoCIAESCggCKAE6BBICCAESDAgKEAIoAToEWgIIBhIMCAoQAigBOgRaAggEEgwIChACKAE6BFoCCAkSDAgKEAIoAToEWgIICBIMCAoQAigBOgRaAggKEgwIChACKAE6BFoCCAISDAgKEAIoAToEWgIIARIMCAoQAigBOgRaAggDEgwIChACKAE6BFoCCAcSCggEKAE6BCICEAESCwgoKAE6BcoCAggBEgsIEygCOgWaAQIIARIECB8oAxpKCAoSBgoEWgIIBhIGCgRaAggEEgYKBFoCCAkSBgoEWgIICBIGCgRaAggKEgYKBFoCCAISBgoEWgIIARIGCgRaAggDEgYKBFoCCAcaAggCGgIIDRoCCAQaCwgTEgcKBZoBAggBGgIIDhpCCAcSDgoMOgoKAwiWARoDVVNEEg4KDDoKCgMIyAEaA1VTRBIOCgw6CgoDCPoBGgNVU0QSDgoMOgoKAwisAhoDVVNEGoIFCB8SCQoFggICCCEgARILCgeCAgQICBghIAESCQoFggICCBIgAhIMCgiCAgUImwEYEiABEgsKB4ICBAhoGBIgARIJCgWCAgIIFCAFEgsKB4ICBAhwGBQgAhILCgeCAgQIGxgUIAISCwoHggIECE4YFCABEgoKBoICAwihAiABEgkKBYICAggcIBgSCwoHggIECFEYHCAEEgsKB4ICBAhYGBwgARILCgeCAgQIcxgcIAYSCwoHggIECEcYHCADEgsKB4ICBAg2GBwgAxILCgeCAgQIJBgcIAESCwoHggIECE0YHCAFEgwKCIICBQidAhgcIAESCQoFggICCCUgBhILCgeCAgQIdxglIAESCwoHggIECHkYJSACEgsKB4ICBAh6GCUgAxIJCgWCAgIIESANEgsKB4ICBAhAGBEgAhILCgeCAgQIOBgRIAQSCwoHggIECFcYESABEgsKB4ICBAgCGBEgARILCgeCAgQIfxgRIAMSCwoHggIECCsYESACEgkKBYICAgguICgSDAoIggIFCIABGC4gAxILCgeCAgQIPBguIAESCwoHggIECDsYLiACEgsKB4ICBAhWGC4gBxILCgeCAgQIOhguIAMSDAoIggIFCIcBGC4gAhILCgeCAgQISBguIAESCwoHggIECD0YLiAEEgwKCIICBQiBARguIAESDAoIggIFCIMBGC4gARILCgeCAgQISxguIAcSCwoHggIECAMYLiABEgsKB4ICBAgMGC4gAhILCgeCAgQIKBguIAISDAoIggIFCIkBGC4gARILCgeCAgQIJxguIAISCQoFggICCDUgAhILCgeCAgQICxg1IAESCwoHggIECDIYNSABIgIgAQ&q=hotels+in+boston&rp=EOy7vNvl2N2UHRC3zNfasIjQq8UBEOrC3KWfqOfmlwEQ6IWohK-tzZFIOAFAAEgCogEKQm9zdG9uLCBNQcABA8gBAA&ictx=1",
        "image": "<URL to image>",
        "original_price": "$129",
        "price": "$115",
        "title": "Hilton Boston Downtown/Faneuil Hall",
        "rating": 4.3,
        "reviews": 1800,
        "sale": "20% less than usual",
        "deal": "DEAL"
      },
      {
        "link": "https://www.google.com/travel/hotels/Boston/entity/CgsIt8zX2rCI0KvFARAB?g2lb=4306835,4258168,4640247,4401769,4659631,4317915,4371335,4659204,2502548,2503781,4518326,4624411,4605861,2503771,4641139,4419364,4644940,4597339,4270442,4644488,4570331,4596364,4284970,4270859,4291517&hl=en-US&gl=us&ssta=1&ap=aAE&grf=Er8ICiwIDhIoEiZyJCoiCgcI5Q8QCxgYEgcI5Q8QCxgZIAAwHkDKAkoHCOUPEAsYEBILCCkoAToF0gICCAESCggNKAE6BGoCCAESCggHKAE6BDoCIAESCggCKAE6BBICCAESDAgKEAIoAToEWgIIBhIMCAoQAigBOgRaAggEEgwIChACKAE6BFoCCAkSDAgKEAIoAToEWgIICBIMCAoQAigBOgRaAggKEgwIChACKAE6BFoCCAISDAgKEAIoAToEWgIIARIMCAoQAigBOgRaAggDEgwIChACKAE6BFoCCAcSCggEKAE6BCICEAESCwgoKAE6BcoCAggBEgsIEygCOgWaAQIIARIECB8oAxpKCAoSBgoEWgIIBhIGCgRaAggEEgYKBFoCCAkSBgoEWgIICBIGCgRaAggKEgYKBFoCCAISBgoEWgIIARIGCgRaAggDEgYKBFoCCAcaAggCGgIIDRoCCAQaCwgTEgcKBZoBAggBGgIIDhpCCAcSDgoMOgoKAwiWARoDVVNEEg4KDDoKCgMIyAEaA1VTRBIOCgw6CgoDCPoBGgNVU0QSDgoMOgoKAwisAhoDVVNEGoIFCB8SCQoFggICCCEgARILCgeCAgQICBghIAESCQoFggICCBIgAhIMCgiCAgUImwEYEiABEgsKB4ICBAhoGBIgARIJCgWCAgIIFCAFEgsKB4ICBAhwGBQgAhILCgeCAgQIGxgUIAISCwoHggIECE4YFCABEgoKBoICAwihAiABEgkKBYICAggcIBgSCwoHggIECFEYHCAEEgsKB4ICBAhYGBwgARILCgeCAgQIcxgcIAYSCwoHggIECEcYHCADEgsKB4ICBAg2GBwgAxILCgeCAgQIJBgcIAESCwoHggIECE0YHCAFEgwKCIICBQidAhgcIAESCQoFggICCCUgBhILCgeCAgQIdxglIAESCwoHggIECHkYJSACEgsKB4ICBAh6GCUgAxIJCgWCAgIIESANEgsKB4ICBAhAGBEgAhILCgeCAgQIOBgRIAQSCwoHggIECFcYESABEgsKB4ICBAgCGBEgARILCgeCAgQIfxgRIAMSCwoHggIECCsYESACEgkKBYICAgguICgSDAoIggIFCIABGC4gAxILCgeCAgQIPBguIAESCwoHggIECDsYLiACEgsKB4ICBAhWGC4gBxILCgeCAgQIOhguIAMSDAoIggIFCIcBGC4gAhILCgeCAgQISBguIAESCwoHggIECD0YLiAEEgwKCIICBQiBARguIAESDAoIggIFCIMBGC4gARILCgeCAgQISxguIAcSCwoHggIECAMYLiABEgsKB4ICBAgMGC4gAhILCgeCAgQIKBguIAISDAoIggIFCIkBGC4gARILCgeCAgQIJxguIAISCQoFggICCDUgAhILCgeCAgQICxg1IAESCwoHggIECDIYNSABIgIgAQ&q=hotels+in+boston&rp=EOy7vNvl2N2UHRC3zNfasIjQq8UBEOrC3KWfqOfmlwEQ6IWohK-tzZFIOAFAAEgCogEKQm9zdG9uLCBNQcABA8gBAA&ictx=1",
        "image": "<URL to image>",
        "price": "$111",
        "title": "Omni Boston Hotel at the Seaport",
        "rating": 4.6,
        "reviews": 89,
        "features": [
          "Outdoor pool",
          "Hot tub"
        ]
      },
      ...
    ],
    "map_results": [
      {
        "price": "$159",
        "latitude": "42.33364",
        "longitude": "-71.08167"
      },
      {
        "price": "$100",
        "latitude": "42.32709",
        "longitude": "-71.05955"
      },
      ...
    ]
  }
  ...
}

Dictionary Answer Box

Dictionary Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "dictionary_results",
    "syllables": "trans·par·ent",
    "pronunciation_audio": "https://ssl.gstatic.com/dictionary/static/sounds/20200429/transparent--_us_2.mp3",
    "phonetic": "/transˈperənt/",
    "word_type": "adjective",
    "definitions": [
      "(of a material or article) allowing light to pass through so that objects behind can be distinctly seen.",
      "easy to perceive or detect.",
      "having thoughts, feelings, or motives that are easily perceived.",
      "(of an organization or its activities) open to public scrutiny.",
      "transmitting heat or other electromagnetic rays without distortion.",
      "(of a process or interface) functioning without the user being aware of its presence."
    ],
    "examples": [
      "transparent blue water",
      "a transparent plastic film",
      "the residents will see through any transparent attempt to buy their votes",
      "the symbolism of this myth is transparent",
      "you'd be no good at poker—you're too transparent",
      "if you had transparent government procurement, corruption would go away",
      "parliament should render government transparent"
    ],
    "extras": [
      "synonyms:see-through, clear, translucent, pellucid, crystal clear, crystalline, limpid, glassy, glasslike, liquid; Moreunclouded, uncloudy; raretranspicuous \"a transparent plastic film\"",
      "antonyms:opaque, cloudy",
      "synonyms:obvious, explicit, unambiguous, unequivocal, clear, lucid, straightforward, plain, (as) plain as the nose on your face, apparent, unmistakable, manifest, conspicuous, patent, indisputable, self-evident; raretranspicuous \"the symbolism of this myth is transparent\"",
      "antonyms:obscure, ambiguous",
      "synonyms:frank, open, candid, honest, direct, forthright, unreserved, plain-spoken, straight, straightforward, ingenuous, innocent, guileless, simple, artless; Moreaccountable; informalupfront \"parliament should render government transparent\"",
      "antonyms:cunning, secretive"
    ]
  },
  ...
}

List Answer Box

List Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "organic_result",
    "title": "French Toast Recipe | Robert Irvine | Food Network",
    "link": "https://www.foodnetwork.com/recipes/robert-irvine/french-toast-recipe-1951408",
    "snippet": "DirectionsIn a small bowl, combine cinnamon, nutmeg, and sugar and set aside briefly.In a 10-inch or 12-inch skillet, melt butter over medium heat. Whisk together cinnamon mixture, eggs, milk, and vanilla and pour into a shallow container such as a pie plate. Dip bread in egg mixture.",
    "list": [
      "In a small bowl, combine cinnamon, nutmeg, and sugar and set aside briefly.",
      "In a 10-inch or 12-inch skillet, melt butter over medium heat. Whisk together cinnamon mixture, eggs, milk, and vanilla and pour into a shallow container such as a pie plate. Dip bread in egg mixture."
    ],
    "refinements": [
      "no milk",
      "good",
      "sweet",
      "without eggs",
      "bread",
      "stuffed",
      "casserole",
      "cinnamon roll"
    ],
    "thumbnail": "<URL to image>"
  },
  ...
}

Organic Result Answer Box type 1

Organic Result Answer Box type 1

JSON Example

{
  ...
  "answer_box": {
    "type": "organic_result",
    "title": "Bananas: Health benefits, tips, and risks - Medical News Today",
    "link": "https://www.medicalnewstoday.com/articles/271157#:~:text=Bananas%20are%20one%20of%20the,reduce%20the%20risk%20of%20cancer.",
    "displayed_link": "https://www.medicalnewstoday.com › articles",
    "date": "2 days ago",
    "snippet": "Bananas are one of the most popular fruits worldwide. They contain essential nutrients that can have a protective impact on health. Eating bananas can help lower blood pressure and may reduce the risk of cancer.",
    "snippet_highlighted_words": [
      "help lower blood pressure and may reduce the risk of cancer"
    ],
    "thumbnail": "https://serpapi.com/searches/62cef4d8e7d08a2a19a66368/images/817075856624c04510a250764fc036e676fa7ecb50ef50be.jpeg",
    "about_this_result": {
      "source": {
        "description": "Medical News Today is a web-based outlet for medical information and news, targeted at both the general public and physicians. All posted content is available online, and the earliest available article dates from May 2003. The website has been owned by Healthline Media since 2016.",
        "icon": "https://serpapi.com/searches/62cef4d8e7d08a2a19a66368/images/817075856624c045dc67593005e2e98effdea56fd64f9f1f80aea4149ff5e1060f5b83ca85987129b7d261b512322da4.png"
      },
      "keywords": [
        "what",
        "banana",
        "fruit",
        "known",
        "for"
      ],
      "related_keywords": [
        "bananas"
      ],
      "languages": [
        "English"
      ],
      "regions": [
        "the United States"
      ]
    },
    "about_page_link": "https://www.google.com/search?q=About+https://www.medicalnewstoday.com/articles/271157&tbm=ilp&ilps=ADNMCi3uAE-moB4b7p92Z02YyCfiR72LIQ"
  },
  ...
}

Organic Result Answer Box type 2

Organic Result Answer Box type 2

JSON Example

{
  ...
  "answer_box": {
    "type": "organic_result",
    "title": "Isaac Newton | Biography, Facts, Discoveries, Laws ...",
    "link": "https://www.britannica.com/biography/Isaac-Newton#:~:text=Isaac%20Newton%2C%20in%20full%20Sir,Revolution%20of%20the%2017th%20century.",
    "displayed_link": "https://www.britannica.com › Science › Physics › Physicists",
    "snippet": "Isaac Newton, in full Sir Isaac Newton, (born December 25, 1642 [January 4, 1643, New Style], Woolsthorpe, Lincolnshire, England—died March 20 [March 31], 1727, London), English physicist and mathematician, who was the culminating figure of the Scientific Revolution of the 17th century.",
    "snippet_highlighted_words": [
      "English physicist and mathematician"
    ],
    "images": [
      "https://serpapi.com/searches/62cf047ce7d08a3ff30e7de8/images/be4c60d26e9a3cbfd3a8410ae2a001474a2877ba0b607ff3.jpeg",
      "https://serpapi.com/searches/62cf047ce7d08a3ff30e7de8/images/be4c60d26e9a3cbfd3a8410ae2a0014713d19189f88aae68.jpeg",
      "https://serpapi.com/searches/62cf047ce7d08a3ff30e7de8/images/be4c60d26e9a3cbfd3a8410ae2a00147306c86a864d8d1f8.jpeg"
    ],
    "subjects_of_study": "Newtonian reflector Newton’s ...",
    "notable_works": "“Opticks” “The Mathematical Pr...",
    "died": "March 31, 1727 (aged 84) London Engla...",
    "born": "January 4, 1643 England",
    "about_this_result": {
      "source": {
        "description": "britannica.com was first indexed by Google more than 10 years ago",
        "icon": "https://serpapi.com/searches/62cf047ce7d08a3ff30e7de8/images/be4c60d26e9a3cbf3c9e6debf81bbc3d260d4a7666f647bc7ae1c2e8097bf0c69ca85aac6bda1cf8bf4d05310cebb890.png"
      }
    },
    "about_page_link": "https://www.google.co.uk/search?q=About+https://www.britannica.com/biography/Isaac-Newton&tbm=ilp&ilps=ADNMCi2QO8PaOOSlTdPi4gxx3ZjzBGUEYA"
  },
  ...
}

Organic Result Answer Box type 3

Organic Result Answer Box type 3

JSON Example

{
  ...
  "answer_box": {
    "type": "organic_result",
    "title": "We have data on 3,639 companies that use IBM Watson....Who uses IBM Watson?",
    "link": "https://enlyft.com/tech/products/ibm-watson",
    "contents": {
      "table": [
        [
          "Company",
          "Bonnier Corporation"
        ],
        [
          "Website",
          "bonniercorp.com"
        ],
        [
          "Country",
          "United States"
        ],
        [
          "Revenue",
          "100M-200M"
        ],
        [
          "Company Size",
          "500-1000"
        ]
      ],
      "formatted": {
        "company": "Bonnier Corporation",
        "website": "bonniercorp.com",
        "country": "United States",
        "revenue": "100M-200M",
        "company_size": "500-1000"
      }
    }
  },
  ...
}

Organic Result Answer Box type 4

Organic Result Answer Box type 4

JSON Example

{
  ...
    "answer_box": {
    "type": "organic_result",
    "title": "Papa John's Prices",
    "link": "https://www.fastfoodmenuprices.com/papa-johns-prices/",
    "contents": {
      "table": [
        [
          "Food",
          "Size",
          "Price"
        ],
        [
          "Pizzas Original and Thin Crust Choices"
        ],
        [
          "Cheese (Original)",
          "Medium",
          "$13.00"
        ],
        [
          "Cheese (Original)",
          "Large",
          "$15.00"
        ],
        [
          "Cheese (Original)",
          "Extra Large",
          "$17.00"
        ]
      ],
      "formatted": {
        "pizzas_original_and_thin_crust_choices": [
          {
            "food": "Cheese (Original)",
            "size": "Medium",
            "price": "$13.00"
          },
          {
            "food": "Cheese (Original)",
            "size": "Large",
            "price": "$15.00"
          },
          {
            "food": "Cheese (Original)",
            "size": "Extra Large",
            "price": "$17.00"
          }
        ]
      }
    }
  },

  ...
}

Organic Result Answer Box type 5

Organic Result Answer Box type 5

JSON Example

{
  ...
  "answer_box": {
    "type": "organic_result",
    "title": "A. Pengertian Persegi Panjang (Rectangle)",
    "link": "https://www.advernesia.com/blog/matematika/rumus-luas-dan-rumus-keliling-persegi-panjang-beserta-sisinya/",
    "contents": {
      "table": [
        [
          "Nama",
          "Rumus"
        ],
        [
          "Luas (L)",
          "L = p × l"
        ],
        [
          "Keliling (Kll)",
          "Kll = 2 × (p + l)"
        ],
        [
          "Panjang (p)",
          "p = L ÷ l"
        ],
        [
          "Panjang (p)",
          "p = (Kll ÷ 2) - l"
        ]
      ],
      "formatted": [
        {
          "nama": "Luas (L)",
          "rumus": "L = p × l"
        },
        {
          "nama": "Keliling (Kll)",
          "rumus": "Kll = 2 × (p + l)"
        },
        {
          "nama": "Panjang (p)",
          "rumus": "p = L ÷ l"
        },
        {
          "nama": "Panjang (p)",
          "rumus": "p = (Kll ÷ 2) - l"
        }
      ]
    }
  },
  ...
}

Multiple Answer Box

Multiple Answer Box

JSON Example

{
  ...
  "answer_box_list": [
    {
      "type": "organic_result",
      "title": "Types of Content Writing - DemandJump",
      "link": "https://www.demandjump.com/blog/types-of-content-writing",
      "displayed_link": "https://www.demandjump.com › blog › types-of-conten...",
      "date": "Dec 10, 2020",
      "snippet": "What are the types of content writing?",
      "list": [
        "Blogging. Creating blog posts is a staple of content writing. ... ",
        "Copywriting. ... ",
        "Technical Writing/Long Form. ... ",
        "Social Media Posts. ... ",
        "Emails."
      ]
    },
    {
      "type": "organic_result",
      "title": "32 Types of Content and How to Use Them (With Examples ...",
      "link": "https://www.constant-content.com/content-writing-service/2018/12/types-of-content/",
      "displayed_link": "https://www.constant-content.com › 2018/12 › types-of...",
      "date": "Dec 12, 2018",
      "snippet": "Types of Written Content",
      "list": [
        "Blog Post. Blog posts are consistently a top performer for brands. ... ",
        "White Papers. White papers are effective for businesses wanting to prove industry expertise. ... ",
        "Ebooks. ... ",
        "Customer Success Stories. ... ",
        "Case Studies. ... ",
        "Product Content and Guides. ... ",
        "Resource Centers. ... ",
        "Testimonials."
      ]
    }
  ],
  ...
}

Translation Answer Box

Translation Answer Box

JSON Example

{
  ...
   "answer_box": {
      "type": "translation_result",
      "translation": {
         "source": {
            "language": "English - detected",
            "text": "hello",
            "pronunciation": "həˈlō"
         },
         "target": {
            "language": "Spanish",
            "text": "Hola"
         },
         "interjection": [
            {
               "title": "¡Hola!",
               "values": [
                  "Hello!",
                  "Hi!",
                  "Hey!",
                  "Hullo!",
                  "Hallo!",
                  "Hoy!"
               ]
            },
            {
               "title": "¡Caramba!",
               "values": [
                  "Gee!",
                  "Well!",
                  "Good gracious!",
                  "Well I never!",
                  "By jingo!",
                  "By gum!"
               ]
            },
            {
               "title": "¡Oiga!",
               "values": [
                  "Listen!",
                  "Hello!",
                  "Hullo!",
                  "Hallo!",
                  "I say!",
                  "See here!"
               ]
            },
            ...
         ]
      }
   },
  ...
}

Directions Answer Box

Directions Answer Box

JSON Example

{
  ...
   "answer_box": {
      "type": "directions",
      "from": "Lexington St, Texas 78653",
      "to": "5540 N Lamar Blvd #12, Austin, TX 78756",
      "routes": [
        {
          "summary": "13 min (11.0 mi) via 290 Toll",
          "formatted": {
            "duration": "13 min",
            "distance": "11.0 mi",
            "via": "290 Toll"
          },
          "link":
          "https://google.com/maps/dir/Lexington+St,+Texas+78653/5540+N+Lamar+Blvd+%2312,+Austin,+TX+78756/data=!4m8!4m7!1m2!1m1!1s0x8644c70e301d5a83:0x4da14744d7922d41!1m2!1m1!1s0x8644ca4259b00001:0x324e8a4726500bd7!3e0?sa=X"
        }
      ]
   },
  ...
}

Formula Answer Box

Formula Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "formula",
    "title": "Trapezoid",
    "solve_for": "area",
    "solve_for_alternatives": [
      "base (a)",
      "base (b)",
      "height",
      ...
    ],
    "answer": "13.5 in²",
    "answer_alternatives": [
      "m²",
      "km²",
      "cm²",
      ...
    ],
    "parameters": [
      {
        "symbol": "a",
        "name": "Base",
        "value": 5,
        "unit": "in"
      },
      {
        "symbol": "b",
        "name": "Base",
        "value": 4,
        "unit": "in"
      },
      {
        "symbol": "h",
        "name": "Height",
        "value": 3,
        "unit": "in"
      }
    ],
    "solutions": [
      "A=(((a+b)/2)*h)"
    ]
  },
  ...
}

Unit Converter Answer Box

Unit Converter Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "unit_converter",
    "unit_type": "Digital Storage",
    "from": {
      "value": 1,
      "unit": "Gigabyte"
    },
    "to": {
      "value": 1000,
      "unit": "Megabyte"
    },
    "formula": "multiply the digital storage value by 1000"
  },
  ...
}

Open Hours Answer Box

Open Hours Answer Box

JSON Example

{
  ...
  "answer_box": {
    "result": "Open 24 hours",
    "description": "Rockefeller Center, Monday hours",
    "hours_list": [
      {
        "title": "Rockefeller Center",
        "items": [
          {
            "day": "Monday",
            "hours": "Open 24 hours"
          },
          {
            "day": "Tuesday",
            "hours": "Open 24 hours"
          },
          {
            "day": "Wednesday",
            "hours": "Open 24 hours"
          },
          {
            "day": "Thursday",
            "hours": "Open 24 hours"
          },
          ...
        ]
      },
      {
        "title": "1 Rockefeller Plaza",
        "items": [
          {
            "day": "Monday",
            "hours": "10:30 AM–4:30 PM"
          },
          {
            "day": "Tuesday",
            "hours": "10:30 AM–4:30 PM"
          },
          {
            "day": "Wednesday",
            "hours": "10:30 AM–4:30 PM"
          },
          ...
        ]
      },
      {
        "title": "SLim Dental Rockefeller Center",
        "items": [
          {
            "day": "Monday",
            "hours": "8 AM–5 PM"
          },
          {
            "day": "Tuesday",
            "hours": "8 AM–5 PM"
          },
          {
            "day": "Wednesday",
            "hours": "9 AM–6 PM"
          },
          ...
        ]
      }
    ],
    "local_hours_results": [
      {
        "title": "1 Rockefeller Plaza",
        "link": "https://www.google.com/search?q=1+Rockefeller+Plaza&ludocid=250211502183433163&gsas=1&lsig=AB86z5XRpHZe_3Q73xXH6EOOYN6G&sa=X&ved=2ahUKEwihoNXLutj9AhVJD1kFHTxvACgQnbkBegQICRAF",
        "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google&gl=us&google_domain=google.com&hl=en&location=Austin%2C+Texas%2C+United+States&lsig=AB86z5XRpHZe_3Q73xXH6EOOYN6G&ludocid=250211502183433163&q=1+Rockefeller+Plaza",
        "hours": "10:30 AM–4:30 PM"
      },
      {
        "title": "SLim Dental Rockefeller Center",
        "link": "https://www.google.com/search?q=SLim+Dental+Rockefeller+Center&ludocid=16721026813527913726&gsas=1&lsig=AB86z5WlupY8ho4QItDb51PCaDU9&sa=X&ved=2ahUKEwihoNXLutj9AhVJD1kFHTxvACgQnbkBegQICRAH",
        "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google&gl=us&google_domain=google.com&hl=en&location=Austin%2C+Texas%2C+United+States&lsig=AB86z5WlupY8ho4QItDb51PCaDU9&ludocid=16721026813527913726&q=SLim+Dental+Rockefeller+Center",
        "hours": "8 AM–5 PM"
      }
    ],
    "type": "hours"
  },
  ...
}

Sunrise / Sunset Time Answer Box

Sunrise / Sunset Time Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type" : "time",
    "result" : "8:25 PM",
    "date" : "Tuesday, August 1, 2023 (CDT)",
    "description" : "Sunset in Austin, TX"
  },
  ...
}

Public Alerts Answer Box (Type 1)

Public Alerts Answer Box (Type 1)

JSON Example

{
  ...
  "answer_box": {
    "type" : "recent_earthquakes",
    "alerts": [
      {
        "title": "M 7.5",
        "details": "4 miles from Suzu, Ishikawa, Japan",
        "link": "https://www.google.com/search?q=earthquake&sourceid=chrome-mobile&ie=UTF-8&stick=H4sIAAAAAAAAAOOQVeLVT9c3NCzLTjLJKzcoecR4hJFb4OWPe8JSuxh3nW2s5uHi4uLQz9U3MCqyNJ-05uQ1xkWMXFyuiUUlGYWlidmpSqVGobsuTTvH5i_IAAR_JgY5SGloCXKxueTnJmbmCQq7MDpk_H1vryXMxRGSWJGfl59bKbhn2f96PaCgkgRIk8IpDycHCWYFBg0GQyD3AVv8r_1aDEFwWw8wMjXtW3GIjZuDUYDBiJWDQYiRzYpJgzGInwvi-IyqCtMUY-OqBsbOvp0z3q5sZuZZxMqVCncjAD87XvHmAAAA&sa=X&ved=2ahUKEwiagdTm8cGDAxWjfDABHYleAXMQuqkBKAB6BAgWEAU",
        "thumbnail": "http://localhost:3000/searches/6595acda10a07184141498f1/images/45fda570d55b7abea37f8516412f1d8646f0b0c8dd020451e6f8fb1818479cb0.png",
        "date": "Jan 1, 2:10 AM"
      },
      {
        "title": "M 4.1",
        "details": "11 miles from Rancho Palos Verdes, CA",
        "link": "https://www.google.com/search?q=earthquake&sourceid=chrome-mobile&ie=UTF-8&stick=H4sIAAAAAAAAAOOQVeLVT9c3NMxJLsgzy64qf8R4hJFb4OWPe8JSuxh3nW2s5uHi4uLQz9U3MCqyNJ-05uQ1xkWMXFyuiUUlGYWlidmpSqVGobsuTTvH5i_IAAR_JgY5SGloCXKxueTnJmbmCQq7MDpk_H1vryXMxRGSWJGfl59bKbhn2f96PaCgkgRIk8IpDycHCWYFBg0GQyD3AVv8r_1aDEFwWw8wMjXtW3GIjZuDUYDBiJWDQYiRzYpJgzGInwvi-IyqCtMUY-OqBsbOvp0z3q5sZuZZxMqVCncjAGwCm5PmAAAA&sa=X&ved=2ahUKEwiagdTm8cGDAxWjfDABHYleAXMQuqkBKAF6BAgWEAY",
        "thumbnail": "http://localhost:3000/searches/6595acda10a07184141498f1/images/45fda570d55b7abea37f8516412f1d86602cc12d6d1866e81b2bbca2bf473129.png",
        "date": "Jan 1, 11:27 AM"
      },
      {
        "title": "M 6.2",
        "details": "3 miles from Anamizu, Ishikawa, Japan",
        "link": "https://www.google.com/search?q=earthquake&sourceid=chrome-mobile&ie=UTF-8&stick=H4sIAAAAAAAAAOOQVeLVT9c3NMxJLsg2qigpecR4hJFb4OWPe8JSuxh3nW2s5uHi4uLQz9U3MCqyNJ-05uQ1xkWMXFyuiUUlGYWlidmpSqVGobsuTTvH5i_IAAR_JgY5SGloCXKxueTnJmbmCQq7MDpk_H1vryXMxRGSWJGfl59bKbhn2f96PaCgkgRIk8IpDycHCWYFBg0GQyD3AVv8r_1aDEFwWw8wMjXtW3GIjZuDUYDBiJWDQYiRzYpJgzGInwvi-IyqCtMUY-OqBsbOvp0z3q5sZuZZxMqVCncjANeaEU_mAAAA&sa=X&ved=2ahUKEwiagdTm8cGDAxWjfDABHYleAXMQuqkBKAJ6BAgWEAc",
        "thumbnail":
        "http://localhost:3000/searches/6595acda10a07184141498f1/images/45fda570d55b7abea37f8516412f1d86288a531067f4fe21cf45612ffb2a8383.png",
        "date": "Jan 1, 2:18 AM"
      },
      ...
    ]
  },
  ...
}

Public Alerts Answer Box (Type 2)

Public Alerts Answer Box (Type 2)

JSON Example

{
  ...
  "answer_box": {
    "type" : "recent_earthquakes",
    "result": "Magnitude 4.5 earthquake",
    "link": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000m0ug",
    "disclaimer": "Note: Official reports of new earthquakes may be delayed All times are in Türkiye Time · Sources: U.S. Geological Survey , ready.gov",
    "details": [
      "Affected countries: Türkiye, Iran, Syria, Iraq, Armenia, and Azerbaijan",
      "31 km ENE of Çukurca, Turkey · Dec 31, 7:37 PM"
    ],
    "additional_info": [
      "Expect aftershocks hours, days, or weeks after the main quake.",
      "Aftershocks can cause building damage and falling debris that could injure you.",
      "Avoid open flames in damaged buildings.",
      "Earthquakes can damage gas lines, so don’t use lighters or matches.",
      "If you live near the coast, stay away from the beach.",
      "Earthquakes can cause dangerous tsunamis and flooding.",
      "Drive carefully and plan alternative routes.",
      "Structural damage and traffic light outages may make it difficult to get to your destination."
    ],
    "alerts": [
      {
        "title": "M 4.4",
        "details": "20 km W of Ambrolauri, Georgia",
        "link": "https://www.google.com.tr/search?uule=w+CAIQICIGVHVya2V5&q=earthquakes+in+turkey&sourceid=chrome&ie=UTF-8&stick=H4sIAAAAAAAAAOOQVeLVT9c3NCwrykgvLinKesR4kIlb4OWPe8JS25l2nW2s1uXi4uLQz9U3MCqyNJeS5-IEsQ2r8pLjnYQ4C9X8p8WIbhAR1IpP0rpy-6bDpDUnrzH-Y-Tick0sKskoLE3MThUK5OLwyU9OLMnMzxPileJGMkFKQYmL1yvVUlzUZQujqBYW84xEuCDuyzbLTosvjk8S6Ho-i1Gpzihu16Vp59giBBmAgEck1EFKQ0uQi80lPzcxM0_wrje3ws_X7-21hLk4QhIr8vPycysFW-r_27_6995eSZETqMfh-e_39iDdDoJSjg4SbAoMGgyGQO4DtniuA1oMQXAvH2Bkatq34hAbNwejAIMRKweDECObFZMGUxA_1GUZVRWmKcbGVQ2M7WterDmzuZmZZxGraCrc_8UKmXkKJaVF2amVABxpdQ5uAQAA&sa=X&ved=2ahUKEwib7_zU78ODAxXATTABHZ2iDDUQuqkBKAB6BAgQEAc",
        "thumbnail": "http://localhost:3000/searches/6596b70c10a07132eb2783ab/images/5b3ff62e14d7d86f2d3c24b9864b59edf8eedf6edb736a6c0c40d99d4110536a.png",
        "date": "Jan 2, 11:44 AM"
      },
      {
        "title": "M 4.4",
        "details": "33 km SE of Hakkâri, Turkey",
        "link": "https://www.google.com.tr/search?uule=w+CAIQICIGVHVya2V5&q=earthquakes+in+turkey&sourceid=chrome&ie=UTF-8&stick=H4sIAAAAAAAAAOOQVeLVT9c3NCzLtiy2NCksfsR4kIlb4OWPe8JS25l2nW2s1uXi4uLQz9U3MCqyNJeS5-IEsQ2r8pLjnYQ4C9X8p8WIbhAR1IpP0rpy-6bDpDUnrzH-Y-Tick0sKskoLE3MThUK5OLwyU9OLMnMzxPileJGMkFKQYmL1yvVUlzUZQujqBYW84xEuCDuyzbLTosvjk8S6Ho-i1Gpzihu16Vp59giBBmAgEck1EFKQ0uQi80lPzcxM0_wrje3ws_X7-21hLk4QhIr8vPycysFW-r_27_6995eSZETqMfh-e_39iDdDoJSjg4SbAoMGgyGQO4DtniuA1oMQXAvH2Bkatq34hAbNwejAIMRKweDECObFZMGUxA_1GUZVRWmKcbGVQ2M7WterDmzuZmZZxGraCrc_8UKmXkKJaVF2amVAE1bqf9uAQAA&sa=X&ved=2ahUKEwib7_zU78ODAxXATTABHZ2iDDUQuqkBKAF6BAgQEAg",
        "thumbnail": "http://localhost:3000/searches/6596b70c10a07132eb2783ab/images/5b3ff62e14d7d86f2d3c24b9864b59edc28dd148c96aa9f07ee9afbe160c1529.png",
        "date": "Dec 31, 8:06 PM"
      },
      {
        "title": "M 4.2",
        "details": "6 km NNE of Doğanyol, Turkey",
        "link": "https://www.google.com.tr/search?uule=w+CAIQICIGVHVya2V5&q=earthquakes+in+turkey&sourceid=chrome&ie=UTF-8&stick=H4sIAAAAAAAAAOOQVeLVT9c3NMxJzkvKLS82esR4kIlb4OWPe8JS25l2nW2s1uXi4uLQz9U3MCqyNJeS5-IEsQ2r8pLjnYQ4C9X8p8WIbhAR1IpP0rpy-6bDpDUnrzH-Y-Tick0sKskoLE3MThUK5OLwyU9OLMnMzxPileJGMkFKQYmL1yvVUlzUZQujqBYW84xEuCDuyzbLTosvjk8S6Ho-i1Gpzihu16Vp59giBBmAgEck1EFKQ0uQi80lPzcxM0_wrje3ws_X7-21hLk4QhIr8vPycysFW-r_27_6995eSZETqMfh-e_39iDdDoJSjg4SbAoMGgyGQO4DtniuA1oMQXAvH2Bkatq34hAbNwejAIMRKweDECObFZMGUxA_1GUZVRWmKcbGVQ2M7WterDmzuZmZZxGraCrc_8UKmXkKJaVF2amVAKtaBtJuAQAA&sa=X&ved=2ahUKEwib7_zU78ODAxXATTABHZ2iDDUQuqkBKAJ6BAgQEAk",
        "thumbnail": "http://localhost:3000/searches/6596b70c10a07132eb2783ab/images/5b3ff62e14d7d86f2d3c24b9864b59ed02c869c333d14bf973f4354757d863c5.png",
        "date": "Dec 30, 4:26 PM"
      }
    ]
  },
  ...
}

Air Quality Answer Box

Refer to [aqi_basics][indexes] for all the possible values of aqi_status. When aqi_status is Currently unavailable, aqi_value wouldn't be present.

Air Quality Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "air_quality",
    "sources": [
      {
        "title": "airnow.gov",
        "link": "https://www.airnow.gov/"
      },
      {
        "title": "PurpleAir",
        "link": "https://www.purpleair.com/"
      }
    ],
    "map_link": "https://www.google.com/maps/@30.377237,-97.7811165,171261m/data=!5m1!1e9",
    "aqi_basics": {
      "source": "airnow.gov",
      "source_link": "https://www.airnow.gov/",
      "index_reference": "The U.S. AQI is EPA’s index for reporting air quality.",
      "index_reference_link": "https://www.airnow.gov/aqi/aqi-basics",
      "indexes": [
        {
          "hex_color": "#689F38",
          "name": "0 to 50 = Good",
          "extracted_min": 0,
          "extracted_max": 50,
          "extracted_name": "Good"
        },
        {
          "hex_color": "#FBC02D",
          "name": "51 to 100 = Moderate",
          "extracted_min": 51,
          "extracted_max": 100,
          "extracted_name": "Moderate"
        },
        {
          "hex_color": "#F57C00",
          "name": "101 to 150 = Unhealthy for sensitive groups",
          "extracted_min": 101,
          "extracted_max": 150,
          "extracted_name": "Unhealthy for sensitive groups"
        },
        {
          "hex_color": "#C53929",
          "name": "151 to 200 = Unhealthy",
          "extracted_min": 151,
          "extracted_max": 200,
          "extracted_name": "Unhealthy"
        },
        {
          "hex_color": "#AD1457",
          "name": "201 to 300 = Very unhealthy",
          "extracted_min": 201,
          "extracted_max": 300,
          "extracted_name": "Very unhealthy"
        },
        {
          "hex_color": "#880E4F",
          "name": "301+ = Hazardous",
          "extracted_min": 301,
          "extracted_name": "Hazardous"
        }
      ],
      "snippets": [
        "Types of pollutants",
        "The US Air Quality Index (AQI) is based on the level of certain pollutants in the air. Commonly measured pollutants include particulate matter (PM), nitrogen dioxide (NO2), ozone (O3), carbon monoxide (CO) and sulfur dioxide (SO2). Not all monitors measure every pollutant."
      ],
      "learn_more_link": "https://support.google.com/airquality?hl=en-US"
    },
    "stations": [
      {
        "name": "East Austin C1619",
        "location": "Holly",
        "aqi_value": 31,
        "aqi_status": "Good",
        "aqi_hex_color": "#689F38",
        "provider": "airnow.gov",
        "time": "Updated less than 2 hours ago",
        "remark": "Air quality is satisfactory, and air pollution poses little or no risk.",
        "table": [
          {
            "pollutant": "PM2.5",
            "category": "--"
          },
          {
            "pollutant": "PM10",
            "category": "--"
          },
          {
            "pollutant": "O3",
            "category": "Good"
          },
          {
            "pollutant": "NO2Nitrogen dioxide",
            "category": "--"
          },
          {
            "pollutant": "SO2Sulfur dioxide",
            "category": "--"
          },
          {
            "pollutant": "COCarbon monoxide",
            "category": "--"
          }
        ]
      },
      ...
    ],
    "full_stations_table": [
      {
        "name": "East Austin C1619",
        "location": "Holly",
        "aqi_value": 31,
        "aqi_status": "Good",
        "remark": "Air quality is satisfactory, and air pollution poses little or no risk.",
        "provider": "airnow.gov",
        "time": "Updated less than 2 hours ago"
      },
      {
        "name": "Austin Webberville Road C171",
        "location": "Holly",
        "aqi_value": 44,
        "aqi_status": "Good",
        "remark": "Air quality is satisfactory, and air pollution poses little or no risk.",
        "provider": "airnow.gov",
        "time": "Updated less than 4 hours ago"
      },
      {
        "name": "PA-II 27563",
        "location": "Museum District",
        "aqi_status": "Currently unavailable"
      },
      ...
    ]
  },
  ...
}

Math Solution Answer Box

The mathematical notation shown in the expression can be found on LaTeX Mathematics.

Math Solution Answer Box

JSON Example

{
  ...
  "answer_box": {
    "type": "math_solution",
    "problem": {
      "expression": "3x^{2}-7x+2=0",
      "annotation": "3 x squared minus 7 x plus 2 equals 0"
    },
    "solutions": [
      {
        "name": "Quadratic formula",
        "steps": [
          {
            "number": 1,
            "description": "Use the quadratic formula",
            "details": [
              {
                "expression": "x=\\frac{-{\\color{#e8710a}{b}} \\pm \\sqrt{{\\color{#e8710a}{b}}^{2}-4{\\color{#c92786}{a}}{\\color{#129eaf}{c}}}}{2{\\color{#c92786}{a}}}",
                "annotation": "x equals the fraction with numerator negative b plus or minus the square root of b squared minus 4 a c end root and denominator 2 a end fraction"
              },
              {
                "description": "Once in standard form, identify a, b, and c from the original equation and plug them into the quadratic formula."
              },
              {
                "expression": "3x^{2}-7x+2=0",
                "annotation": "3 x squared minus 7 x plus 2 equals 0"
              },
              {
                "expression": "a={\\color{#c92786}{3}}",
                "annotation": "a equals 3"
              },
              {
                "expression": "b={\\color{#e8710a}{-7}}",
                "annotation": "b equals negative 7"
              },
              {
                "expression": "c={\\color{#129eaf}{2}}",
                "annotation": "c equals 2"
              }
            ],
            "answer": {
              "expression": "x=\\frac{-({\\color{#e8710a}{-7}}) \\pm \\sqrt{({\\color{#e8710a}{-7}})^{2}-4 \\cdot {\\color{#c92786}{3}} \\cdot {\\color{#129eaf}{2}}}}{2 \\cdot {\\color{#c92786}{3}}}",
              "annotation": "x equals the fraction with numerator negative open paren negative 7 close paren plus or minus the square root of open paren negative 7 close paren squared minus 4 center dot 3 center dot 2 end root and denominator 2 center dot 3 end fraction"
            }
          },
          {
            "number": 2,
            "description": "Simplify",
            "details": [
              {
                "expression": "x=\\frac{7 \\pm \\sqrt{(-7)^{2}-4 \\cdot 3 \\cdot 2}}{2 \\cdot 3}",
                "annotation": "x equals the fraction with numerator 7 plus or minus the square root of open paren negative 7 close paren squared minus 4 center dot 3 center dot 2 end root and denominator 2 center dot 3 end fraction"
              },
              {
                "description": "Evaluate the exponent",
                "steps": [
                  {
                    "expression": "x=\\frac{7 \\pm \\sqrt{{\\color{#c92786}{(-7)^{2}}}-4 \\cdot 3 \\cdot 2}}{2 \\cdot 3}",
                    "annotation": "x equals the fraction with numerator 7 plus or minus the square root of open paren negative 7 close paren squared minus 4 center dot 3 center dot 2 end root and denominator 2 center dot 3 end fraction"
                  },
                  {
                    "expression": "x=\\frac{7 \\pm \\sqrt{{\\color{#c92786}{49}}-4 \\cdot 3 \\cdot 2}}{2 \\cdot 3}",
                    "annotation": "x equals the fraction with numerator 7 plus or minus the square root of 49 minus 4 center dot 3 center dot 2 end root and denominator 2 center dot 3 end fraction"
                  }
                ]
              },
              {
                "description": "Multiply the numbers",
                "steps": [
                  {
                    "expression": "x=\\frac{7 \\pm \\sqrt{49{\\color{#c92786}{-4}} \\cdot {\\color{#c92786}{3}} \\cdot {\\color{#c92786}{2}}}}{2 \\cdot 3}",
                    "annotation": "x equals the fraction with numerator 7 plus or minus the square root of 49 negative 4 center dot 3 center dot 2 end root and denominator 2 center dot 3 end fraction"
                  },
                  {
                    "expression": "x=\\frac{7 \\pm \\sqrt{49{\\color{#c92786}{-24}}}}{2 \\cdot 3}",
                    "annotation": "x equals the fraction with numerator 7 plus or minus the square root of 49 negative 24 end root and denominator 2 center dot 3 end fraction"
                  }
                ]
              },
              ...
            ],
            "answer": {
              "expression": "x=\\frac{7 \\pm 5}{6}",
              "annotation": "x equals the fraction with numerator 7 plus or minus 5 and denominator 6 end fraction"
            }
          },
          ...
        ]
      },
      {
        "name": "Factor",
        "steps": [
          {
            "number": 1,
            "description": "Use the sum-product pattern",
            "details": [
              {
                "description": "Given a quadratic in the form ax^{2}+bx+c , find two numbers that, when multiplied together, equal ac ; and, when added together, equal b . Decompose the middle term to include your two factors."
              },
              {
                "expression": "3x^{2}{\\color{#c92786}{-7x}}+2=0",
                "annotation": "3 x squared negative 7 x plus 2 equals 0"
              }
            ],
            "answer": {
              "expression": "3x^{2}{\\color{#c92786}{-x}}{\\color{#c92786}{-6x}}+2=0",
              "annotation": "3 x squared negative x negative 6 x plus 2 equals 0"
            }
          },
          {
            "number": 2,
            "description": "Common factor from the two pairs",
            "details": [
              {
                "expression": "\\left(3x^{2}-x\\right)+(-6x+2)=0",
                "annotation": "open paren 3 x squared minus x close paren plus open paren negative 6 x plus 2 close paren equals 0"
              }
            ],
            "answer": {
              "expression": "x(3x-1)-2(3x-1)=0",
              "annotation": "x open paren 3 x minus 1 close paren minus 2 open paren 3 x minus 1 close paren equals 0"
            }
          },
          ...
        ]
      }
    ],
    "answer": {
      "expression": "x=2\\\\x=\\frac{1}{3}",
      "annotation": "2 lines; Line 1: x equals 2; Line 2: x equals one-third end lines;"
    },
    "answer_in_alternative_form": {
      "expression": "x=2\\\\x\\approx 0.333",
      "annotation": "2 lines; Line 1: x equals 2; Line 2: x is approximately equal to 0.333 end lines;"
    },
    "solutions_on_the_web": [
      {
        "name": "Mathway",
        "logo": "https://serpapi.com/searches/656e8ac4b68f8bf2bc1189cc/images/cfe1f801e90ba217834a7cd1c644f39524cc8766bca1924b3c2e56c53b1f52d199a49ed9917521dc.png",
        "link": "https://www.mathway.com/?asciimath=3x%5E2%20-%207x%20%2B%202%20%3D%200"
      },
      {
        "name": "Tiger Algebra",
        "logo": "https://serpapi.com/searches/656e8ac4b68f8bf2bc1189cc/images/cfe1f801e90ba217834a7cd1c644f39524cc8766bca1924b3c2e56c53b1f52d1353ceb3abbb09584.png",
        "link": "https://www.tiger-algebra.com/en/solvetext/3x%5E2%20-%207x%20%2B%202%20%3D%200/?origin=googlemath"
      },
      {
        "name": "GeoGebra",
        "logo": "https://serpapi.com/searches/656e8ac4b68f8bf2bc1189cc/images/cfe1f801e90ba217834a7cd1c644f39524cc8766bca1924b3c2e56c53b1f52d1bce385b788ed5717.png",
        "link": "https://www.geogebra.org/solver?i=3x%5E2%20-%207x%20%2B%202%20%3D%200&from=google"
      },
      ...
    ]
  },
  ...
}