Endpoint Playground
Test Crawlora's Chrome Web Store Collection 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/collection?collection=editors_picks_extensions&num=50&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| collection | string | Yes | editors_picks_extensions | Curated collection slug |
| num | integer | No | 50 | Maximum number of items |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "collection",
"value": "editors_picks_extensions",
"count": 1,
"results": [
{
"id": "becfinhbfclcgokjlobojlnldbfillpf",
"name": "Chat with all AI models & AI Agents | AITOPIA",
"rating": 4.9,
"url": "https://chromewebstore.google.com/detail/becfinhbfclcgokjlobojlnldbfillpf"
}
]
}
}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 the item cards in a curated store collection slug (e.g. `editors_picks_extensions`, `dark_mode`, `ai_productivity`). Use /chromewebstore/categories for known collection slugs. Defaults: `num=50`, `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "collection",
"value": "editors_picks_extensions",
"count": 1,
"results": [
{
"id": "becfinhbfclcgokjlobojlnldbfillpf",
"name": "Chat with all AI models & AI Agents | AITOPIA",
"rating": 4.9,
"url": "https://chromewebstore.google.com/detail/becfinhbfclcgokjlobojlnldbfillpf"
}
]
}
}curl "https://api.crawlora.net/api/v1/chromewebstore/collection?collection=<collection>" \
-H "x-api-key: $CRAWLORA_API_KEY"