Catalog/Google/Search 100
POST

Google Search 100 API

/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.

Category SearchRequests / mo 1Routing 1 lane · no failover
Get ~100 free requests

Pricing

One price, in dollars

pay per request · no subscription · fallbacks added as the catalog grows
Request
Gateway request
discovered operation
↓
Router
↓
Providers · 1
↳ One lane serves this endpoint today, so a failed call has nowhere to fail over to. Failed attempts are never billed. Uptime, latency and traffic are measured through the gateway, last 30 days.

Try it

Make your first request

run it free, no key · same shape for every API
Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "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
}
Response interface
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 30d
POST /v1/run/google.search_100
curl -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"}'
FieldTypeExample value
Request body
querystring"best crm software"The Google search query.
autocorrectbooleanToggle Google spelling autocorrect (default true). Set false to search the exact query without correction.
glstring"us"Two-letter country code for result localization (e.g. us, gb, de).
hlstring"en"Two-letter interface and results language code (e.g. en, es, de).
timeframestringRestrict results to a recent time window: 1h, 1d, 7d, 1y, or all. Default all (no time restriction).
Response
dataobject
data.aiOverviewstringGoogle's AI Overview text for this query, when Google showed one. Absent when it did not.
data.querystringThe search query these results answer.
data.resultsobject[]Organic results in Google's own order, position 1 first. Populated whenever the provider has data for the entity.
data.results[].linkstringThe destination URL. Populated whenever the provider has data for the entity.
data.results[].positionintegerAbsolute rank across the whole result set, counting from 1 - not restarted per page. Populated whenever the provider has data for the entity.
data.results[].snippetstringGoogle's summary text for the result. Populated whenever the provider has data for the entity.
data.results[].titlestringThe result's headline as Google renders it. Populated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0018
Price /1k reqUSD$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.

It costs from $1.80 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

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. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

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. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.

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.

Get ~100 free requests
Works with
Terminal agentsClaude CodeCursorCodexMCP clients