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 trending term detail API Playground
Returns the Explore detail widgets for a single trending term, including interest over time, regional interest, top/rising related queries, and related topics when Google returns.
POSTapiKey3 credits/requesttrends.exploreResponseDocGoogle
Endpoint details
Returns the Explore detail widgets for a single trending term, including interest over time, regional interest, top/rising related queries, and related topics when Google returns them.
- Method
- POST
- Path
- /google/trends/trending/detail
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Parameters
- 2 documented fields
Request parameters
request:bodyx-api-key:header
Response schema fields
codedatadata.categorydata.geodata.hldata.interest_by_regiondata.interest_by_region[].geo_codedata.interest_by_region[].geo_namedata.interest_by_region[].valuesdata.interest_by_region[].values[].formatted_valuedata.interest_by_region[].values[].has_datadata.interest_by_region[].values[].keyword
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"keywords": [
"google"
],
"geo": "HK",
"time_range": "today 1-y",
"interest_over_time": [
{
"time": "1777075200",
"formatted_time": "Apr 2026",
"values": [
{
"keyword": "google",
"value": 87,
"formatted_value": "87",
"has_data": true
}
]
}
],
"top_queries": [
{
"keyword": "google",
"items": [
{
"query": "google maps",
"value": 100
}
]
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/trends/trending/detail" \
-H "x-api-key: <api-key>" \
-X POST \
--data "{}"