# Google Trends Related Queries by Keyword and Country

> Google Trends Related Queries by Keyword and Country is a paid API for AI agents from google-trends.use.x402atlas.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns top and rising related search queries for a given keyword in a specified country, sourced from Google Trends, for SEO and content research.

## Facts

- Endpoint: GET https://google-trends.use.x402atlas.com/related-queries
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-trends-related-queries-by-keyword-and-country-b1917193
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y7xS6qfF89K3vTFKWasuC

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability google-trends-related-queries-by-keyword-and-country-b1917193
```

Example prompt: Pull the Google Trends related queries for the keyword 'electric vehicles' in the US — show me both the top and rising terms so I can expand my SEO keyword list.

## When to prefer this

Use this endpoint when you need structured related search query data from Google Trends for a specific keyword and country, especially for SEO keyword expansion, content ideation, or query clustering. Prefer this over generic keyword tools when you want real Google search behavior data segmented by country with both top (stable) and rising (breakout) query signals.

## Known failure modes

- Missing required 'keyword' parameter returns a validation error
- Missing or invalid 'country' two-letter code returns an error or empty result
- Keyword with no Google Trends data returns empty query lists
- Rate limiting or payment failure returns a 402 or 429 error
- Very niche or brand-new keywords may return sparse or no related queries

## How this service works

Google Trends related search queries for a keyword by country — top & rising terms for SEO keyword research, query expansion and content ideas.

## Output

A structured response containing two lists — top related queries (most commonly searched terms related to the keyword) and rising related queries (breakout or fast-growing terms) — for the specified keyword and country, useful for SEO keyword expansion and content planning.

## Request schema (JSON Schema)

```json
{
 "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": 100,
       "description": "Concise Google Trends seed term with meaningful search interest (for example bitcoin or electric vehicles); not a question, instruction, or web-search request"
      }
     }
    }
   },
   "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"
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "top": [
   {
    "term": "solana price",
    "value": 100
   }
  ],
  "rising": [
   {
    "term": "solana etf",
    "value": 250
   }
  ],
  "country": "us",
  "keyword": "solana",
  "queried_at": "2026-06-05T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-trends-related-queries-by-keyword-and-country-b1917193/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from google-trends.use.x402atlas.com](https://www.zero.xyz/host/google-trends.use.x402atlas.com/llms.txt)
