Endpoint Playground
Test Crawlora's Suggest Google 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/google/suggest?q=openai&count=10&country=us&lang=en" \
-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 | Google result country; defaults to us |
| lang | string | No | en | Google UI language; defaults to en |
{
"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 Google autosuggest query completions from the public unauthenticated suggest JSON endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"suggestions": [
{
"position": 1,
"query": "openai api"
}
]
}
}curl "https://api.crawlora.net/api/v1/google/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"