# Google Trends Related Queries

> Google Trends Related Queries is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns top (scored 0–100) and rising (% growth) related search queries from Google Trends for a given keyword and country

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/related-queries
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-trends-related-queries-4178611d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3bjAkOpFSXxOsVWmm9cbu

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-4178611d
```

Example prompt: What are the top and rising Google search queries related to 'electric vehicles' in the US over the past 12 months?

## When to prefer this

Choose this endpoint when you need to discover what related terms people are searching for alongside a specific keyword in a specific country — ideal for SEO research, content ideation, trend monitoring, and competitive intelligence. Prefer this over general web search endpoints when you specifically want structured Google Trends query data with relative scoring and growth metrics rather than raw SERP results.

## Known failure modes

- Missing required 'keyword' or 'geo' parameter returns a 400 error
- Invalid or unsupported ISO-3166 country code causes a lookup failure
- Keyword with no Google Trends data returns empty result arrays
- Rare or very niche keywords may return sparse or empty rising/top lists
- Network timeout or upstream Google Trends availability issues may cause 5xx errors
- Invalid timeframe enum value returns a validation error

## How this service works

Google Trends related queries for a keyword. Returns the searches people run alongside a keyword in a given country: top queries scored 0-100 relative to each other, and rising queries with their percentage growth. Google Trends keyword expansion for SEO keyword research, content planning, and spotting breakout search demand early.

## Output

Returns two lists: (1) 'top' related queries with a relative interest score from 0 to 100, and (2) 'rising' related queries with a percentage growth value indicating breakout or surging searches — both filtered to the specified keyword, country, and time window.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "keyword",
      "geo"
     ],
     "properties": {
      "geo": {
       "type": "string",
       "description": "ISO-3166 alpha-2 country code, e.g. US, GB, DE, JP (213 countries supported)"
      },
      "keyword": {
       "type": "string",
       "description": "the search term"
      },
      "timeframe": {
       "enum": [
        "2004_present",
        "past_12_months",
        "past_30_days",
        "past_4_hours",
        "past_5_years",
        "past_7_days",
        "past_90_days",
        "past_day",
        "past_hour"
       ],
       "type": "string",
       "default": "past_12_months",
       "description": "time window. Each response reports its own bucket size in `granularity`: past_30_days and past_90_days return a daily series, past_12_months and past_5_years weekly, windows under a day hourly"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-trends-related-queries-4178611d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
