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 interest over time API Playground
Returns only the interest-over-time timeline from the Google Trends Explore widget flow. Supports multiple comparison terms.
POSTapiKey2 credits/requesttrends.interestOverTimeResponseDocGoogle
Endpoint details
Returns only the interest-over-time timeline from the Google Trends Explore widget flow. Supports multiple comparison terms.
- Method
- POST
- Path
- /google/trends/explore/interest-over-time
- 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.interest_over_timedata.interest_over_time[].formatted_axis_timedata.interest_over_time[].formatted_timedata.interest_over_time[].timedata.interest_over_time[].valuesdata.interest_over_time[].values[].formatted_valuedata.interest_over_time[].values[].has_data
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"keywords": [
"google",
"openai"
],
"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
},
{
"keyword": "openai",
"value": 42,
"formatted_value": "42",
"has_data": true
}
]
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/trends/explore/interest-over-time" \
-H "x-api-key: <api-key>" \
-X POST \
--data "{}"