Google Search 100 API
Run a Google web search and get up to 100 ranked organic results in one call, with true absolute positions rather than per-page numbering. One flat charge whatever the depth, which makes it cheaper than paging google.search past roughly 20 results. It reads ten pages of Google to build the list, so a call takes around three to four minutes - use google.search when you want the first page back in a second.
- Category SearchRequests / mo 1Routing 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": {
"aiOverview": "example",
"query": "example",
"results": [
{
"link": "https://example.com/page",
"position": 1,
"snippet": "A short example description of this item.",
"title": "Example title"
}
]
},
"found": true
}interface GoogleSearch100Response {
data: {
aiOverview?: string;
query: string;
results: {
link: string;
position: number;
snippet: string;
title: 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.search_100 \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"gl":"us","hl":"en","query":"best crm software"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "best crm software"The Google search query. |
| autocorrect | boolean | Toggle Google spelling autocorrect (default true). Set false to search the exact query without correction. |
| gl | string | "us"Two-letter country code for result localization (e.g. us, gb, de). |
| hl | string | "en"Two-letter interface and results language code (e.g. en, es, de). |
| timeframe | string | Restrict results to a recent time window: 1h, 1d, 7d, 1y, or all. Default all (no time restriction). |
| Response | ||
| data | object | |
| data.aiOverview | string | Google's AI Overview text for this query, when Google showed one. Absent when it did not. |
| data.query | string | The search query these results answer. |
| data.results | object[] | Organic results in Google's own order, position 1 first. Populated whenever the provider has data for the entity. |
| data.results[].link | string | The destination URL. Populated whenever the provider has data for the entity. |
| data.results[].position | integer | Absolute rank across the whole result set, counting from 1 - not restarted per page. Populated whenever the provider has data for the entity. |
| data.results[].snippet | string | Google's summary text for the result. Populated whenever the provider has data for the entity. |
| data.results[].title | string | The result's headline as Google renders it. Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0018 |
| Price /1k req | USD | $1.80 |
FAQ
About the Google Search 100 API
The AnyAPI Google Search 100 API returns Google search 100 data as normalized JSON from one POST call to /v1/run/google.search_100. Run a Google web search and get up to 100 ranked organic results in one call, with true absolute positions rather than per-page numbering. One flat charge whatever the depth, which makes it cheaper than paging google.search past roughly 20 results. It reads ten pages of Google to build the list, so a call takes around three to four minutes - use google.search when you want the first page back in a second. 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, 100.0% of Google search 100 calls through AnyAPI succeeded, with a median response time of 110.6 seconds across 1 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.