Endpoint Playground
Test Crawlora's Chrome Web Store Publisher 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/developer?id=u63f06aecfdc45d32c13ccc24f56c3d2d&num=50&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | u63f06aecfdc45d32c13ccc24f56c3d2d | Chrome Web Store publisher id (u + 32 hex chars) |
| 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": {
"id": "u63f06aecfdc45d32c13ccc24f56c3d2d",
"name": "Adguard Software Limited",
"legal_name": "Adguard Software Ltd",
"email": "[email protected]",
"phone": "+35780077147",
"address": "Andrea Zakou, Limassol Centre C, office 34, Limassol 3095, CY",
"website": "https://adguard.com",
"duns": "534532547",
"is_trader": true,
"url": "https://chromewebstore.google.com/publisher/u63f06aecfdc45d32c13ccc24f56c3d2d",
"count": 1,
"items": [
{
"id": "bgnkhhnnamicmpeenaelnjfhikgbkllg",
"name": "AdGuard AdBlocker",
"rating": 4.66,
"rating_count": 68233,
"publisher": "adguard.com",
"url": "https://chromewebstore.google.com/detail/bgnkhhnnamicmpeenaelnjfhikgbkllg"
}
]
}
}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 a Chrome Web Store publisher (developer) by publisher id, including the disclosed trader details — legal name, email, phone, address, website, and D-U-N-S number — plus the publisher's listed items ("More from ..."). Trader fields are only present for publishers that identify as EU traders. Defaults: `num=50`, `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "u63f06aecfdc45d32c13ccc24f56c3d2d",
"name": "Adguard Software Limited",
"legal_name": "Adguard Software Ltd",
"email": "[email protected]",
"phone": "+35780077147",
"address": "Andrea Zakou, Limassol Centre C, office 34, Limassol 3095, CY",
"website": "https://adguard.com",
"duns": "534532547",
"is_trader": true,
"url": "https://chromewebstore.google.com/publisher/u63f06aecfdc45d32c13ccc24f56c3d2d",
"count": 1,
"items": [
{
"id": "bgnkhhnnamicmpeenaelnjfhikgbkllg",
"name": "AdGuard AdBlocker",
"rating": 4.66,
"rating_count": 68233,
"publisher": "adguard.com",
"url": "https://chromewebstore.google.com/detail/bgnkhhnnamicmpeenaelnjfhikgbkllg"
}
]
}
}curl "https://api.crawlora.net/api/v1/chromewebstore/developer?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"