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&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 within the current finite result snapshot; defaults to 1 |
| count | integer | No | 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": "Example headline",
"url": "https://example.com/news/story",
"source": "Example News",
"age": "2 hours ago"
}
],
"pagination": {
"page": 1
}
}
}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 current Google News search results using anonymous HTTP requests with fresh proxy profiles, without browser rendering. Pages slice the finite result snapshot; they do not traverse the Google Search index. Results include title, source, publisher article URL, age, and thumbnail when available. Valid no-results searches and exhausted pages return an empty array. Locale defaults to country=us and lang=en. Returns 503 for blocked or malformed upstream responses.
{
"code": 200,
"msg": "OK",
"data": {
"results": [
{
"position": 1,
"title": "Example headline",
"url": "https://example.com/news/story",
"source": "Example News",
"age": "2 hours ago"
}
],
"pagination": {
"page": 1
}
}
}curl "https://api.crawlora.net/api/v1/google/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"