Google AI Mode Scraper

scraper.aimode mirrors Google AI Mode responses, including the rendered HTML, raw URLs, and detailed citation data so you can audit how results vary across locales.

Request Example

curl '{api_host}/api/v2/scraper/request' \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: {you_api_key}' \
  --data '{
    "actor": "scraper.aimode",
    "input": {
      "prompt": "Recommended attractions in New York",
      "country": "US"
    },
    "webhook": {
      "url": "http://www.youwebhook.com"
    }
  }'

Body Parameters

ParameterTypeRequiredDescription
promptstringYesPrompt sent to Google AI Mode.
countrystringYesCountry or region (JP and TW are not supported).

Response Fields

ParameterTypeDescription
result_textstringAnswer body.
result_htmlstringHTML version of the answer.
raw_urlstringOriginal Google AI Mode URL.
citationsarrayCitation sources.
citations.snippetstringSnippet of the cited article.
citations.thumbnailstringCover image of the cited article.
citations.titlestringCitation title.
citations.urlstringCitation URL.
citations.website_namestringWebsite name.
citations.faviconstringFavicon for the website.
search_resultarrayOptional search results referenced by Google.
search_result.snippetstringSearch result snippet.
search_result.thumbnailstringSearch result cover image.
search_result.titlestringSearch result title.
search_result.urlstringSearch result link.
search_result.website_namestringSearch result website name.