Endpoint Playground
Test Crawlora's Chrome Web Store Search 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/search?term=vpn&num=30&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | vpn | Search keyword |
| num | integer | No | 30 | Maximum number of results |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"query": "vpn",
"count": 1,
"results": [
{
"id": "majdfhpaihoncoakbjgbdhglocklcgno",
"name": "Free VPN for Chrome - VPN Proxy VeePN",
"rating": 4.5,
"rating_count": 50285,
"publisher": "veepn.com",
"url": "https://chromewebstore.google.com/detail/majdfhpaihoncoakbjgbdhglocklcgno"
}
]
}
}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 Chrome Web Store search result cards for a keyword, each with id, name, rating, user count, publisher and detail URL. Defaults: `num=30`, `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": {
"query": "vpn",
"count": 1,
"results": [
{
"id": "majdfhpaihoncoakbjgbdhglocklcgno",
"name": "Free VPN for Chrome - VPN Proxy VeePN",
"rating": 4.5,
"rating_count": 50285,
"publisher": "veepn.com",
"url": "https://chromewebstore.google.com/detail/majdfhpaihoncoakbjgbdhglocklcgno"
}
]
}
}curl "https://api.crawlora.net/api/v1/chromewebstore/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"