// Google Trends API

Google Trends data
via REST API

Realtime · JSON

Google’s official Trends API is alpha — quota-limited, Google Cloud auth, no realtime data. This is the working alternative: realtime windows, related, compare and region — clean JSON, pay per result.

Get access

// Endpoints

Google Trends API endpoints

Five data types, one contract. Keyword, geo and time range in — JSON out.

interestOverTime Popularity of each keyword over time — independent 0–100 scale.
compare 2–5 keywords on one shared 0–100 scale (cross-term scaling).
related Top & rising related queries and topics.
interestByRegion Geographic breakdown — COUNTRY / REGION / CITY / DMA.
trendingNow Realtime trending searches for a location.

// Live example

One request, clean JSON

See the shape of the data before you sign up.

Request
curl 'https://<marketplace-gateway>/v1/interest-over-time'\
'?kw=bitcoin&geo=US&time=today%203-m' \
  -H '<auth-header>: <your-key>'
Response
{
  "scrapeType": "interestOverTime",
  "kw": "bitcoin",
  "geo": "US",
  "time": "today 3-m",
  "points": [
    { "date": "Jun 1, 2026", "value": 52, "isPartial": false },
    { "date": "Jun 8, 2026", "value": 61, "isPartial": false }
  ]
}

Base URL and auth header depend on the marketplace — see the docs of the listing you pick.

Empty keywords come back as "status": "no_data" — never billed.

// Reliability

Built to not fall over

Retries and residential IP rotation are handled server-side — you just get stable results.

5 data endpoints — over time, compare, related, region, trending
~15 min realtime freshness for now 1-H…now 7-d windows
<300 ms typical cached response
$0 empty never billed for empty results (pay per delivered result)

// Use cases

What people build with it

SEO analytics Track search interest for target keywords over time and by region. Catch rising related queries before they peak.
Content planning Compare up to 5 topics on one scale to pick what to publish. Ride realtime trending demand while it is fresh.
Market research Measure regional demand from country down to city / DMA. Benchmark brands and competitors on a shared 0–100 scale.

// FAQ

Google Trends API — FAQ

Is there an official Google Trends API?

Google’s official Trends API is in closed alpha — quota-limited, requires Google Cloud auth, and has no recent or realtime data. This API is a working alternative you can use today through the marketplaces below.

How do I get Google Trends data via API?

Pick a marketplace, grab an API key, and call an endpoint with a keyword, geo and time range. You get clean JSON back — no scraping, proxies or rate-limit handling on your side.

Does it include realtime Google Trends data?

Yes. Realtime windows (now 1-H … now 7-d) are refreshed about every 15 minutes — the gap the official alpha API does not cover.

Do I pay for empty results?

No. A keyword with no data comes back flagged as no_data and is never billed. You pay only for delivered, non-empty results.

Can I compare keywords on the same scale?

Yes — the compare endpoint puts 2–5 keywords on one shared 0–100 scale (cross-term scaling), so the numbers are directly comparable in a single request.

What Google Trends data can I pull?

Interest over time, cross-term compare, top & rising related queries and topics, interest by region (country / region / city / DMA), and realtime trending searches.

// Get access

Where to get it

Available now through trusted API marketplaces — pricing is on each listing.