Endpoint Playground
Test Crawlora's Search Google News 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/news?q=openai&page=1&count=10&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | openai | Search query |
| page | integer | No | 1 | 1-based page number; defaults to 1 |
| count | integer | No | 10 | Results per page; defaults to 10, clamped to 1..50 |
| country | string | No | us | Two-letter country code; defaults to us |
| lang | string | No | en | Google UI language; defaults to en |
{
"code": 200,
"msg": "OK",
"data": {
"results": [
{
"position": 1,
"title": "OpenAI announces update",
"url": "https://example.com/openai-news",
"description": "OpenAI announced an update.",
"source": "Example News",
"thumbnail": "https://example.com/thumb.jpg",
"age": "2 hours ago"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}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 News vertical results (title, source, link, age) parsed from the public Google News results page. Locale defaults to country=us and lang=en. Returns 503 when Google serves a challenge page or unusable HTML.
{
"code": 200,
"msg": "OK",
"data": {
"results": [
{
"position": 1,
"title": "OpenAI announces update",
"url": "https://example.com/openai-news",
"description": "OpenAI announced an update.",
"source": "Example News",
"thumbnail": "https://example.com/thumb.jpg",
"age": "2 hours ago"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}curl "https://api.crawlora.net/api/v1/google/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"