Endpoint Playground
Test Crawlora's Search Bing news results 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/bing/news?q=openai&page=1&count=10&country=us&lang=en-us" \
-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-us | Bing UI language; defaults to en-us |
{
"code": 200,
"data": {
"pagination": {
"count": 10,
"next_page": 2,
"page": 1,
"previous_page": 1
},
"results": [
{
"age": "2 hours ago",
"age_timestamp": 1713513600,
"description": "OpenAI announced a new model release.",
"position": 1,
"related_count": 30,
"source": "Reuters",
"thumbnail": "https://example.com/openai-news.jpg",
"title": "OpenAI announces new model",
"url": "https://example.com/openai-news"
}
]
},
"msg": "OK"
}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 Bing news search results for a query string. Locale defaults to country=us and lang=en-us. Results are fetched from public Bing news HTML/async pages and return 503 when Bing serves a challenge page or unusable HTML.
{
"code": 200,
"data": {
"pagination": {
"count": 10,
"next_page": 2,
"page": 1,
"previous_page": 1
},
"results": [
{
"age": "2 hours ago",
"age_timestamp": 1713513600,
"description": "OpenAI announced a new model release.",
"position": 1,
"related_count": 30,
"source": "Reuters",
"thumbnail": "https://example.com/openai-news.jpg",
"title": "OpenAI announces new model",
"url": "https://example.com/openai-news"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bing/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"