Endpoint Playground
Test Crawlora's Search Brave image 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/images?q=openai&offset=0&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 |
| 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 |
{
"code": 200,
"msg": "OK",
"data": {
"results": [
{
"position": 1,
"title": "OpenAI colors mobile 08",
"url": "https://area17.com/clients/openai",
"source": "area17.com",
"image_url": "https://media-cdn-prod.area17.com/openai.jpg",
"thumbnail": "https://imgs.search.brave.com/example",
"width": 1000,
"height": 1184
}
],
"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 image search results for a query string. Locale defaults to country=us and lang=en-us. Results are fetched from public Brave Search image HTML and return 503 when Brave serves a challenge page or unusable HTML.
{
"code": 200,
"msg": "OK",
"data": {
"results": [
{
"position": 1,
"title": "OpenAI colors mobile 08",
"url": "https://area17.com/clients/openai",
"source": "area17.com",
"image_url": "https://media-cdn-prod.area17.com/openai.jpg",
"thumbnail": "https://imgs.search.brave.com/example",
"width": 1000,
"height": 1184
}
],
"pagination": {
"offset": 0,
"next_offset": 1
}
}
}curl "https://api.crawlora.net/api/v1/brave/images?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"