Endpoint Playground
Test Crawlora's Google Trends Enums API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/google/trends/enums" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"explore_time_ranges": [
"now 1-H",
"today 12-m"
],
"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"
]
}
}Public Playground
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.
Returns supported Google Trends enum values for explore/trending filters, including locations, date ranges, search types, categories, statuses, and sort modes.
{
"code": 200,
"msg": "OK",
"data": {
"explore_time_ranges": [
"now 1-H",
"today 12-m"
],
"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 "https://api.crawlora.net/api/v1/google/trends/enums" \
-H "x-api-key: $CRAWLORA_API_KEY"