Endpoint Playground
Test Crawlora's Google Trends Explore 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/explore" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Explore request |
{
"code": 200,
"msg": "OK",
"data": {
"keywords": [
"chatgpt"
],
"geo": "US",
"time_range": "today 12-m",
"type": "web",
"interest_over_time": [
{
"time": "1777075200",
"formatted_time": "Apr 2026",
"values": [
{
"keyword": "chatgpt",
"value": 87,
"formatted_value": "87",
"has_data": true
}
]
}
],
"top_queries": [
{
"keyword": "chatgpt",
"items": [
{
"query": "chatgpt login",
"value": 100,
"formatted_value": "100"
}
]
}
],
"rising_queries": [
{
"keyword": "chatgpt",
"items": [
{
"query": "chatgpt alternatives",
"formatted_value": "Breakout"
}
]
}
]
}
}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 keyword analytics from internal Trends widget requests: interest over time, interest by region, related queries, and related topics when available.
{
"code": 200,
"msg": "OK",
"data": {
"keywords": [
"chatgpt"
],
"geo": "US",
"time_range": "today 12-m",
"type": "web",
"interest_over_time": [
{
"time": "1777075200",
"formatted_time": "Apr 2026",
"values": [
{
"keyword": "chatgpt",
"value": 87,
"formatted_value": "87",
"has_data": true
}
]
}
],
"top_queries": [
{
"keyword": "chatgpt",
"items": [
{
"query": "chatgpt login",
"value": 100,
"formatted_value": "100"
}
]
}
],
"rising_queries": [
{
"keyword": "chatgpt",
"items": [
{
"query": "chatgpt alternatives",
"formatted_value": "Breakout"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/google/trends/explore" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"