Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Google Trends related topics API Playground

Returns only the related topics widget from the Google Trends Explore widget flow.

POSTapiKey2 credits/requesttrends.relatedTopicsResponseDocGoogle

Endpoint

Choose one catalog endpoint for this request.

13 shown
POSTapiKey2 credits/requesttrends.relatedTopicsResponseDocGoogle
POST /google/trends/explore/related-topics

Google Trends related topics

Returns only the related topics widget from the Google Trends Explore widget flow. Returns an empty related_topics array when Google returns no topic rows for the requested term/filter combination.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Body (trends.ExploreRequest)

Body preview
{
  "category": 0,
  "geo": "US",
  "hl": "en-US",
  "keywords": [
    "chatgpt",
    "openai"
  ],
  "time_range": "today 12-m",
  "type": "web",
  "tz": 0
}

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responsePOST

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "keywords": [
      "google"
    ],
    "geo": "HK",
    "time_range": "today 1-y",
    "related_topics": [
      {
        "keyword": "google",
        "items": [
          {
            "topic_title": "Google",
            "topic_type": "Technology company",
            "topic_mid": "/m/045c7b",
            "value": 100,
            "formatted_value": "100"
          }
        ]
      }
    ]
  }
}

Endpoint details

Returns only the related topics widget from the Google Trends Explore widget flow. Returns an empty related_topics array when Google returns no topic rows for the requested term/filter combination.

Method
POST
Path
/google/trends/explore/related-topics
Authentication
apiKey
Credit cost
2 credits/request
Platform
Google
Parameters
2 documented fields

Request parameters

request:bodyx-api-key:header

Response schema fields

codedatadata.categorydata.geodata.hldata.keywordsdata.propertydata.related_topicsdata.related_topics[].itemsdata.related_topics[].items[].formatted_valuedata.related_topics[].items[].linkdata.related_topics[].items[].query

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "keywords": [
      "google"
    ],
    "geo": "HK",
    "time_range": "today 1-y",
    "related_topics": [
      {
        "keyword": "google",
        "items": [
          {
            "topic_title": "Google",
            "topic_type": "Technology company",
            "topic_mid": "/m/045c7b",
            "value": 100,
            "formatted_value": "100"
          }
        ]
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/google/trends/explore/related-topics" \
  -H "x-api-key: <api-key>" \
  -X POST \
  --data "{}"