Endpoint Playground
Test Crawlora's Suggest Bing 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/bing/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 | Two-letter country code; defaults to us |
| lang | string | No | en-us | Bing UI language; defaults to en-us |
{
"code": 200,
"data": {
"query": "openai",
"suggestions": [
{
"position": 1,
"query": "openai api key"
}
]
},
"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 Bing autosuggest query completions for a query prefix. Locale defaults to country=us and lang=en-us. Suggestions are fetched from public Bing suggest endpoints and trimmed to the requested count.
{
"code": 200,
"data": {
"query": "openai",
"suggestions": [
{
"position": 1,
"query": "openai api key"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bing/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"