Endpoint Playground
Test Crawlora's Google Trends Trending Now 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/trending?geo=AF&window=4h&time_range=4h&category=0&status=all&sort_by=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| geo | string | No | AF | Country/territory location code |
| hl | string | No | Google Trends UI locale | |
| tz | integer | No | Timezone offset minutes | |
| window | string | No | 4h | Trend window |
| time_range | string | No | 4h | Alias for window |
| category | integer | No | 0 | Trending category id |
| status | string | No | all | Trend status filter |
| sort_by | string | No | relevance | Sort mode |
| limit | integer | No | Maximum rows to return |
{
"code": 200,
"msg": "OK",
"data": {
"geo": "US",
"hl": "en-US",
"window": "24h",
"time_range": "24h",
"category": 0,
"status": "all",
"sort_by": "relevance",
"items": [
{
"rank": 1,
"title": "chatgpt",
"query": "chatgpt",
"traffic": "200K+",
"status": "active",
"explore_url": "https://trends.google.com/trends/explore?q=chatgpt&geo=US"
}
]
}
}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 normalized Google Trends Trending Now rows from the internal TrendsUi batch RPC replay.
{
"code": 200,
"msg": "OK",
"data": {
"geo": "US",
"hl": "en-US",
"window": "24h",
"time_range": "24h",
"category": 0,
"status": "all",
"sort_by": "relevance",
"items": [
{
"rank": 1,
"title": "chatgpt",
"query": "chatgpt",
"traffic": "200K+",
"status": "active",
"explore_url": "https://trends.google.com/trends/explore?q=chatgpt&geo=US"
}
]
}
}curl "https://api.crawlora.net/api/v1/google/trends/trending" \
-H "x-api-key: $CRAWLORA_API_KEY"