Endpoint Playground
Test Crawlora's Suggest Brave search queries 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/suggest?q=openai&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 prefix |
| count | integer | No | 10 | Suggestions to return; defaults to 10, clamped to 1..12 |
| 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": {
"query": "openai",
"suggestions": [
{
"position": 1,
"query": "openai api"
}
]
}
}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 Brave autosuggest query completions for a query prefix. Locale defaults to country=us and lang=en-us. Suggestions are fetched from public Brave Search suggest JSON and trimmed to the requested count.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"suggestions": [
{
"position": 1,
"query": "openai api"
}
]
}
}curl "https://api.crawlora.net/api/v1/brave/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"