Google Ai overview API
Ask Google Search a prompt and receive the AI Overview it generated for that scrape, with every source Google listed. Google regenerates the overview per search, so the same prompt can return different wording and a different source list.
- Category SearchRequests / mo 485Routing 1 lane · no failover
Pricing
One price, in dollars
pay per request · no subscription · fallbacks added as the catalog growsTry it
Make your first request
run it free, no key · same shape for every API{
"data": {
"answer": "example",
"answerMarkdown": "example",
"citations": [
{
"index": 1,
"title": "Example title",
"url": "https://example.com/page"
}
],
"prompt": "example",
"scrapedAt": "example"
},
"found": true
}interface GoogleAiOverviewResponse {
data: {
answer: string;
answerMarkdown: string;
citations: {
index?: number;
title: string;
url: string;
}[];
prompt: string;
scrapedAt?: string;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-08-23 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/google.ai_overview \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"How does photosynthesis work?"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| prompt | string | "How does photosynthesis work?"The question or prompt to answer with a Google AI Overview. |
| Response | ||
| data | object | The AI Overview Google generated for this scrape, or null when Google returned no overview. Google regenerates the overview on each search, so two calls with the same prompt can return different wording and a different set of sources. Treat a response as a timestamped observation of what Google served, not as a stable record. |
| data.answer | string | The AI Overview answer as plain text, as generated for this scrape. Populated whenever the provider has data for the entity. |
| data.answerMarkdown | string | The same answer in Markdown, preserving the headings and lists Google rendered. Populated whenever the provider has data for the entity. |
| data.citations | object[] | Every source Google listed for this overview, in Google's own order. This is the full list behind the overview, not only the few sources Google renders inline before the list is expanded, so it is routinely longer than what a reader sees at a glance. |
| data.citations[].index | integer | Google's position for this source within the overview, starting at 1. |
| data.citations[].title | string | The cited source title as Google presented it, which may carry a trailing date and snippet. |
| data.citations[].url | string | The cited source URL. |
| data.prompt | string | The prompt Google answered. Populated whenever the provider has data for the entity. |
| data.scrapedAt | string | When this overview was captured, ISO 8601 UTC. Because Google regenerates the overview per search, this identifies which generation the other fields describe. |
| found | boolean | Whether Google Search returned an AI Overview for this prompt. |
| Price | ||
| Price per request | USD | $0.0018 |
| Price /1k req | USD | $1.80 |
FAQ
About the Google Ai overview API
The AnyAPI Google Ai overview API returns Google ai overview data as normalized JSON from one POST call to /v1/run/google.ai_overview. Ask Google Search a prompt and receive the AI Overview it generated for that scrape, with every source Google listed. Google regenerates the overview per search, so the same prompt can return different wording and a different source list. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.80 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 96.7% of Google ai overview calls through AnyAPI succeeded, with a median response time of 70.9 seconds across 483 measured calls.
More to call
Other Google endpoints
Get started
Two ways to start on AnyAPI
Humans fund a USD wallet and pay per request. Agents point a coding agent at one URL and onboard themselves.