Endpoint Playground
Test Crawlora's Search Brave 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/brave/news?q=openai&offset=0&count=10&country=us&lang=en-us&time_range=any&date_from=2026-03-01&date_to=2026-03-30" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | openai | Search query |
| offset | integer | No | 0 | Zero-based Brave result page; defaults to 0 |
| count | integer | No | 10 | Results to return; defaults to 10, clamped to 1..50 |
| country | string | No | us | Brave result country; defaults to us |
| lang | string | No | en-us | Brave UI language; defaults to en-us |
| time_range | string | No | any | Preset time filter: any, day, week, month, year, or custom |
| date_from | string | No | 2026-03-01 | Custom start date in YYYY-MM-DD; requires date_to |
| date_to | string | No | 2026-03-30 | Custom end date in YYYY-MM-DD; requires date_from |
{
"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",
"hostname": "example.com",
"thumbnail": "https://imgs.search.brave.com/example-thumb.jpg",
"age": "2 hours ago"
}
],
"pagination": {
"offset": 0,
"next_offset": 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 normalized Brave news search results for a query string. Locale defaults to country=us and lang=en-us. Results are fetched from public Brave Search news HTML and return 503 when Brave 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",
"hostname": "example.com",
"thumbnail": "https://imgs.search.brave.com/example-thumb.jpg",
"age": "2 hours ago"
}
],
"pagination": {
"offset": 0,
"next_offset": 1
}
}
}curl "https://api.crawlora.net/api/v1/brave/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"