Endpoint Playground
Test Crawlora's Chrome Web Store Item 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/item?id=cjpalhdlnbpafiamejdnhcphjbkeiagm&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | cjpalhdlnbpafiamejdnhcphjbkeiagm | Chrome Web Store item id (32-character extension/theme id) |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"name": "uBlock Origin",
"rating": 4.7,
"rating_count": 35457,
"users": 13000000,
"version": "1.72.0",
"updated": "2026-06-29",
"size": "4.39MiB",
"category": "make_chrome_yours/privacy",
"developer": "Raymond Hill (gorhill)",
"url": "https://chromewebstore.google.com/detail/cjpalhdlnbpafiamejdnhcphjbkeiagm"
}
}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 normalized detail for a Chrome Web Store extension or theme, including name, rating, rating count, user count, version, last-updated date, size, supported languages, developer, category, screenshots, and privacy links. Defaults: `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"name": "uBlock Origin",
"rating": 4.7,
"rating_count": 35457,
"users": 13000000,
"version": "1.72.0",
"updated": "2026-06-29",
"size": "4.39MiB",
"category": "make_chrome_yours/privacy",
"developer": "Raymond Hill (gorhill)",
"url": "https://chromewebstore.google.com/detail/cjpalhdlnbpafiamejdnhcphjbkeiagm"
}
}curl "https://api.crawlora.net/api/v1/chromewebstore/item?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"