Pay-per-call API over Google Trends data: interest over time for a keyword, interest by region within a country, related topics and queries. Returns JSON, built for keyword research and search demand analysis.
Pay from $0.03 to $0.04 per request in USDC on Base / Solana, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 1h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 409ms
- avg response
- 234ms
- total checks
- 70
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $0.03 to $0.04 (p82 in Data)
- price (min)
- $0.03
- price (max)
- $0.04
- category percentile (min)
- p82 in Data
- category percentile (max)
- p60 in Data
- endpoints / prices
- 4 / 2
- model
- tiered
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $0.81 30d · 1 buyers
- volume 30d
- $0.81
- buyers 30d
- 1
- settlements 30d
- 15
- last settlement
- 2026-07-21
- top buyer share
- 50% of 30d volume
- trend 7d vs 30d
- 0.70x the 30d daily rate
- networks
- eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d
Attributed pro-quota: this payout address is shared, so volume and buyers are the operator-level figure divided by the services sharing it. A declared convention, not an individually observed measure, and still a conservative undercount.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedProvides Google Trends SEO keyword data including interest by region, related queries, related topics, and trend information over time.
- category
- seo-keyword-data
- in
- query params
- auth
- none
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| GET | /interest-by-region | $0.03 | Base/Solana | USDC | |
| GET | /related-queries | $0.03 | Base/Solana | USDC | |
| GET | /related-topics | $0.03 | Base/Solana | USDC | |
| GET | /trend | $0.04 | Base/Solana | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to GET /interest-by-region returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i 'https://google-trends.use.x402atlas.com/interest-by-region'
// 402 response (captured by monitor) · 4 payloads · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"tier": "standard",
"version": "2",
"merchant": "x402Atlas"
},
"payTo": "0x9AACeabAD8E1858b72fcEA1665381B168841b2fa",
"amount": "35000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"tier": "standard",
"feePayer": "D6ZhtNQ5nT9ZnTHUbqXZsTx5MH2rPFiBBggX4hY1WePM",
"merchant": "x402Atlas"
},
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"amount": "35000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://google-trends.use.x402atlas.com/trend",
"mimeType": "application/json",
"description": "Google Trends interest over time for a keyword — worldwide search popularity as a monthly series for keyword research, SEO & demand trend analysis.",
"serviceName": "Google Trends SEO Keyword Data"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"keyword": "bitcoin"
}
},
"output": {
"type": "json",
"example": {
"series": [
{
"date": "2026-05-01",
"value": 78
}
],
"keyword": "bitcoin",
"queried_at": "2026-06-05T12:00:00Z"
}
}
},
"tags": [
"google-trends",
"interest-over-time",
"keyword-research",
"search-trends",
"search-volume",
"seo",
"trend-analysis"
],
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"keyword"
],
"properties": {
"keyword": {
"type": "string",
"maxLength": 200,
"description": "Search keyword to fetch interest-over-time for (worldwide)"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"keyword",
"queried_at",
"series"
],
"properties": {
"series": {
"type": "array",
"items": {
"type": "object",
"required": [
"date",
"value"
],
"properties": {
"date": {
"type": "string",
"format": "date",
"description": "ISO date (YYYY-MM-DD)"
},
"value": {
"type": "integer",
"description": "Relative search-popularity index"
}
}
},
"description": "Monthly interest-over-time points, worldwide"
},
"keyword": {
"type": "string",
"description": "Echoed search keyword"
},
"queried_at": {
"type": "string",
"format": "date-time",
"description": "UTC timestamp the upstream was queried"
}
}
}
}
}
}
},
"category": "marketing",
"routeTemplate": ":var1"
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"tier": "standard",
"version": "2",
"merchant": "x402Atlas"
},
"payTo": "0x9AACeabAD8E1858b72fcEA1665381B168841b2fa",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"tier": "standard",
"feePayer": "D6ZhtNQ5nT9ZnTHUbqXZsTx5MH2rPFiBBggX4hY1WePM",
"merchant": "x402Atlas"
},
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"amount": "30000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://google-trends.use.x402atlas.com/interest-by-region",
"mimeType": "application/json",
"description": "Google Trends interest by region for a keyword — search popularity by geography for geo-targeting, local SEO and market research.",
"serviceName": "Google Trends SEO Keyword Data"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"country": "us",
"keyword": "bitcoin"
}
},
"output": {
"type": "json",
"example": {
"country": "us",
"keyword": "bitcoin",
"regions": [
{
"value": 100,
"region": "California"
}
],
"queried_at": "2026-06-05T12:00:00Z"
}
}
},
"tags": [
"google-trends",
"interest-by-region",
"geo-targeting",
"keyword-research",
"seo",
"regional-demand",
"market-research"
],
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"keyword",
"country"
],
"properties": {
"country": {
"type": "string",
"maxLength": 8,
"description": "Country code, e.g. us (case-insensitive)"
},
"keyword": {
"type": "string",
"maxLength": 200,
"description": "Search keyword to fetch regional interest for"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"keyword",
"country",
"queried_at",
"regions"
],
"properties": {
"country": {
"type": "string",
"description": "Echoed country code, lower-cased"
},
"keyword": {
"type": "string",
"description": "Echoed search keyword"
},
"regions": {
"type": "array",
"items": {
"type": "object",
"required": [
"region",
"value"
],
"properties": {
"value": {
"type": "integer",
"description": "Relative search-popularity index (0-100)"
},
"region": {
"type": "string",
"description": "Subregion name"
}
}
},
"description": "Interest broken down by subregion within the country"
},
"queried_at": {
"type": "string",
"format": "date-time",
"description": "UTC timestamp the upstream was queried"
}
}
}
}
}
}
},
"category": "marketing",
"routeTemplate": ":var1"
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"tier": "standard",
"version": "2",
"merchant": "x402Atlas"
},
"payTo": "0x9AACeabAD8E1858b72fcEA1665381B168841b2fa",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"tier": "standard",
"feePayer": "D6ZhtNQ5nT9ZnTHUbqXZsTx5MH2rPFiBBggX4hY1WePM",
"merchant": "x402Atlas"
},
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"amount": "30000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://google-trends.use.x402atlas.com/related-topics",
"mimeType": "application/json",
"description": "Google Trends related topics for a keyword by country — top & rising topics for SEO content research, trend discovery and market analysis.",
"serviceName": "Google Trends SEO Keyword Data"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"country": "us",
"keyword": "bitcoin"
}
},
"output": {
"type": "json",
"example": {
"top": [
{
"term": "Cryptocurrency",
"value": 100
}
],
"rising": [
{
"term": "Spot ETF",
"value": 180
}
],
"country": "us",
"keyword": "bitcoin",
"queried_at": "2026-06-05T12:00:00Z"
}
}
},
"tags": [
"google-trends",
"related-topics",
"keyword-research",
"seo",
"trending-topics",
"market-research",
"content-ideas"
],
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"keyword",
"country"
],
"properties": {
"country": {
"type": "string",
"maxLength": 8,
"description": "Country code, e.g. us (case-insensitive)"
},
"keyword": {
"type": "string",
"maxLength": 200,
"description": "Search keyword to fetch related topics for"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"keyword",
"country",
"queried_at",
"top",
"rising"
],
"properties": {
"top": {
"type": "array",
"items": {
"type": "object",
"required": [
"term",
"value"
],
"properties": {
"term": {
"type": "string",
"description": "Related topic label"
},
"value": {
"type": "integer",
"description": "Relative popularity or growth score"
}
}
},
"description": "Top related topics by popularity (0-100)"
},
"rising": {
"type": "array",
"items": {
"type": "object",
"required": [
"term",
"value"
],
"properties": {
"term": {
"type": "string",
"description": "Related topic label"
},
"value": {
"type": "integer",
"description": "Relative popularity or growth score"
}
}
},
"description": "Related topics with the fastest growth"
},
"country": {
"type": "string",
"description": "Echoed country code, lower-cased"
},
"keyword": {
"type": "string",
"description": "Echoed search keyword"
},
"queried_at": {
"type": "string",
"format": "date-time",
"description": "UTC timestamp the upstream was queried"
}
}
}
}
}
}
},
"category": "marketing",
"routeTemplate": ":var1"
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"tier": "standard",
"version": "2",
"merchant": "x402Atlas"
},
"payTo": "0x9AACeabAD8E1858b72fcEA1665381B168841b2fa",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"tier": "standard",
"feePayer": "D6ZhtNQ5nT9ZnTHUbqXZsTx5MH2rPFiBBggX4hY1WePM",
"merchant": "x402Atlas"
},
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"amount": "30000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://google-trends.use.x402atlas.com/related-queries",
"mimeType": "application/json",
"description": "Google Trends related search queries for a keyword by country — top & rising terms for SEO keyword research, query expansion and content ideas.",
"serviceName": "Google Trends SEO Keyword Data"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"country": "us",
"keyword": "bitcoin"
}
},
"output": {
"type": "json",
"example": {
"top": [
{
"term": "bitcoin price",
"value": 100
}
],
"rising": [
{
"term": "bitcoin etf",
"value": 250
}
],
"country": "us",
"keyword": "bitcoin",
"queried_at": "2026-06-05T12:00:00Z"
}
}
},
"tags": [
"google-trends",
"related-queries",
"keyword-research",
"seo",
"search-trends",
"keyword-ideas",
"query-expansion"
],
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"keyword",
"country"
],
"properties": {
"country": {
"type": "string",
"maxLength": 8,
"description": "Country code, e.g. us (case-insensitive)"
},
"keyword": {
"type": "string",
"maxLength": 200,
"description": "Search keyword to fetch related queries for"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"keyword",
"country",
"queried_at",
"top",
"rising"
],
"properties": {
"top": {
"type": "array",
"items": {
"type": "object",
"required": [
"term",
"value"
],
"properties": {
"term": {
"type": "string",
"description": "Related search query"
},
"value": {
"type": "integer",
"description": "Relative popularity or growth score"
}
}
},
"description": "Top related queries by popularity (0-100)"
},
"rising": {
"type": "array",
"items": {
"type": "object",
"required": [
"term",
"value"
],
"properties": {
"term": {
"type": "string",
"description": "Related search query"
},
"value": {
"type": "integer",
"description": "Relative popularity or growth score"
}
}
},
"description": "Related queries with the fastest growth"
},
"country": {
"type": "string",
"description": "Echoed country code, lower-cased"
},
"keyword": {
"type": "string",
"description": "Echoed search keyword"
},
"queried_at": {
"type": "string",
"format": "date-time",
"description": "UTC timestamp the upstream was queried"
}
}
}
}
}
}
},
"category": "marketing",
"routeTemplate": ":var1"
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 7d window selected here. Every series is also served as JSON at /api/v1/services/google-trends-seo-keyword-data/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
Median across 4 endpoints. Use the selector to isolate one.
Shared payout address (19 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service figure is attributed, the assessment block and the ranking, it is the address total divided pro-quota by the 20 services sharing it: a declared convention, not an individually observed measure.
Shared payout address (19 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service buyer count is attributed, the assessment block and the ranking, it is divided pro-quota by the 20 services sharing the address and can be fractional: a declared convention, not an individually observed measure.
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/google-trends-seo-keyword-data?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/google-trends-seo-keyword-data.svg" alt="Google Trends SEO Keyword Data listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/google-trends-seo-keyword-data?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/google-trends-seo-keyword-data?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/google-trends-seo-keyword-data.svg?data=uptime" alt="Google Trends SEO Keyword Data uptime on x402-list" height="28"> </a>