Endpoint Playground
Test Crawlora's Chrome Web Store Suggest 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/chromewebstore/suggest?term=ad+blo&num=8&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | ad blo | Search prefix to autocomplete |
| num | integer | No | 8 | Maximum number of suggestions |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": [
{
"term": "AdBlock — block ads across the web"
},
{
"term": "Adblock Plus - free ad blocker"
}
]
}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 item-name suggestions for a search prefix, drawn from the top store-search results. Defaults: `num=8`, `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": [
{
"term": "AdBlock — block ads across the web"
},
{
"term": "Adblock Plus - free ad blocker"
}
]
}curl "https://api.crawlora.net/api/v1/chromewebstore/suggest?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"