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 by region API Playground
Returns only the interest-by-region widget from the Google Trends Explore widget flow.
POSTapiKey2 credits/requesttrends.interestByRegionResponseDocGoogle
Endpoint details
Returns only the interest-by-region widget from the Google Trends Explore widget flow. Supports multiple comparison terms and returns an empty interest_by_region array when Google returns no rows.
- Method
- POST
- Path
- /google/trends/explore/interest-by-region
- 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_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_by_region": [
{
"geo_code": "HK",
"geo_name": "Hong Kong",
"values": [
{
"keyword": "google",
"value": 100,
"formatted_value": "100",
"has_data": true
}
]
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/trends/explore/interest-by-region" \
-H "x-api-key: <api-key>" \
-X POST \
--data "{}"