Endpoint Playground
Test Crawlora's Chrome Web Store Privacy 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/privacy?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": "kbfnbcaeplbcioakkpcpgfkobkghlhen",
"name": "Grammarly: AI Writing Assistant",
"collects_data": true,
"data_collected": [
"Personally identifiable information",
"Personal communications",
"Location",
"User activity",
"Website content"
],
"disclosure": "Grammarly … has disclosed the following information regarding the collection and usage of your data.",
"declarations": [
"Not being sold to third parties, outside of the approved use cases",
"Not being used or transferred for purposes that are unrelated to the item's core functionality",
"Not being used or transferred to determine creditworthiness or for lending purposes"
],
"privacy_policy": "https://www.grammarly.com/privacy-policy",
"url": "https://chromewebstore.google.com/detail/kbfnbcaeplbcioakkpcpgfkobkghlhen"
}
}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 an extension's privacy disclosures as the store renders them: the developer's data-use statement, whether it collects data, the standard data-handling declarations, and the privacy-policy link. Defaults: `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "kbfnbcaeplbcioakkpcpgfkobkghlhen",
"name": "Grammarly: AI Writing Assistant",
"collects_data": true,
"data_collected": [
"Personally identifiable information",
"Personal communications",
"Location",
"User activity",
"Website content"
],
"disclosure": "Grammarly … has disclosed the following information regarding the collection and usage of your data.",
"declarations": [
"Not being sold to third parties, outside of the approved use cases",
"Not being used or transferred for purposes that are unrelated to the item's core functionality",
"Not being used or transferred to determine creditworthiness or for lending purposes"
],
"privacy_policy": "https://www.grammarly.com/privacy-policy",
"url": "https://chromewebstore.google.com/detail/kbfnbcaeplbcioakkpcpgfkobkghlhen"
}
}curl "https://api.crawlora.net/api/v1/chromewebstore/privacy?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"