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 explore top queries API Playground
Returns the Top related queries widget for one or more Google Trends explore terms.
POSTapiKey2 credits/requesttrends.exploreQueriesResponseDocGoogle
Endpoint details
Returns the Top related queries widget for one or more Google Trends explore terms. Returns an empty queries array when Google returns no rows for the requested term/filter combination.
- Method
- POST
- Path
- /google/trends/explore/top-queries
- Authentication
- apiKey
- Credit cost
- 2 credits/request
- Platform
- Parameters
- 2 documented fields
Request parameters
request:bodyx-api-key:header
Response schema fields
codedatadata.categorydata.geodata.hldata.keywordsdata.propertydata.queriesdata.queries[].itemsdata.queries[].items[].formatted_valuedata.queries[].items[].linkdata.queries[].items[].query
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"keywords": [
"google"
],
"geo": "HK",
"time_range": "today 1-y",
"query_type": "top",
"queries": [
{
"keyword": "google",
"items": [
{
"query": "google maps",
"value": 100,
"formatted_value": "100"
}
]
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/trends/explore/top-queries" \
-H "x-api-key: <api-key>" \
-X POST \
--data "{}"