Endpoint Playground
Test Crawlora's Search Google News with JSON 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" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| searchOption (body) | object | Yes | Search options; keyword, language and country are required. limit defaults to 10 and is clamped to 10..100; page defaults to 1. |
{
"code": 200,
"msg": "OK",
"data": {
"result": [
{
"position": 1,
"title": "Example headline",
"website_name": "Example News",
"icon": "",
"link": "https://example.com/news/story",
"Snippet": "",
"time": "2 hours ago"
}
]
}
}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.
Restored JSON compatibility endpoint. Returns current Google News articles using anonymous HTTP requests with fresh proxy profiles, without browser rendering. Pages slice the finite current result snapshot. Uses the legacy result array and field names; no-results searches and exhausted pages return an empty result array.
{
"code": 200,
"msg": "OK",
"data": {
"result": [
{
"position": 1,
"title": "Example headline",
"website_name": "Example News",
"icon": "",
"link": "https://example.com/news/story",
"Snippet": "",
"time": "2 hours ago"
}
]
}
}curl "https://api.crawlora.net/api/v1/google/news" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"