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 enum metadata API Playground
Returns supported Google Trends enum values for explore/trending filters, including locations, date ranges, search types, categories, statuses, and sort modes.
GETapiKey1 credit/requesttrends.trendsEnumsResponseDocGoogle
Endpoint details
Returns supported Google Trends enum values for explore/trending filters, including locations, date ranges, search types, categories, statuses, and sort modes.
- Method
- GET
- Path
- /google/trends/enums
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- Parameters
- 1 documented fields
Request parameters
x-api-key:header
Response schema fields
codedatadata.explore_time_rangesdata.locationsdata.search_typesdata.trend_statusesdata.trending_categoriesdata.trending_categories[].iddata.trending_categories[].namedata.trending_sort_bysdata.trending_time_rangesmsg
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"explore_time_ranges": [
"now 1-H",
"today 12-m",
"today 1-y"
],
"trending_time_ranges": [
"4h",
"24h",
"48h",
"7d"
],
"search_types": [
"web",
"image",
"news",
"youtube",
"shopping"
],
"locations": [
"WORLDWIDE",
"US",
"HK"
],
"trending_categories": [
{
"id": 0,
"name": "All"
}
],
"trend_statuses": [
"all",
"active",
"ended"
],
"trending_sort_bys": [
"relevance",
"title",
"recency",
"search_volume"
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/trends/enums" \
-H "x-api-key: <api-key>"