Google API

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.

POST/v1/run/google.search_100
Uptime
96.46%
30d · 226 calls
Requests
226
30d · weekly, last 12 wks
Response
100.7s
median · 30d

Pricing

One price, in dollars

Try it

Make your first request

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-09-16 · 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, 96.5% of Google search 100 calls through AnyAPI succeeded, with a median response time of 100.7 seconds across 226 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, 96.5% of Google search 100 calls through AnyAPI succeeded, with a median response time of 100.7 seconds across 226 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.