Endpoint Playground
Test Crawlora's Get Chrome Web Store dataset metrics API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/chrome-extensions/metrics" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| days | integer | No | Recent-change window enum: 7, 30, 90; default 30 | |
| limit | integer | No | Top category and permission buckets, default 10, min 5, max 25 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "chrome-extensions",
"generated_at": "2026-07-14T08:00:00Z",
"days": 30,
"summary": {
"total": 966,
"total_users": 10232794,
"total_ratings": 36524,
"average_rating": 4.4341,
"privacy_policies": 440,
"named_developers": 774,
"developer_emails": 104
},
"item_types": [
{
"value": "extension",
"count": 693
},
{
"value": "theme",
"count": 238
}
],
"risk_signals": [
{
"value": "Broad host access",
"count": 146
},
{
"value": "Collects data",
"count": 198
}
],
"top_categories": [
{
"value": "productivity/tools",
"count": 256,
"users": 1200000
}
],
"top_developers": [
{
"value": "Example Publisher",
"count": 12,
"users": 250000
}
],
"changes": {
"total": 1,
"types": [
{
"value": "status",
"count": 1
}
],
"daily": [
{
"date": "2026-07-14",
"count": 1,
"users_delta": 0,
"rating_count_delta": 0
}
]
}
}
}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 chart-ready coverage, adoption, rating, permission, privacy and recent-change aggregates for the stored Chrome Web Store dataset. Days enum: `7`, `30`, `90`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "chrome-extensions",
"generated_at": "2026-07-14T08:00:00Z",
"days": 30,
"summary": {
"total": 966,
"total_users": 10232794,
"total_ratings": 36524,
"average_rating": 4.4341,
"privacy_policies": 440,
"named_developers": 774,
"developer_emails": 104
},
"item_types": [
{
"value": "extension",
"count": 693
},
{
"value": "theme",
"count": 238
}
],
"risk_signals": [
{
"value": "Broad host access",
"count": 146
},
{
"value": "Collects data",
"count": 198
}
],
"top_categories": [
{
"value": "productivity/tools",
"count": 256,
"users": 1200000
}
],
"top_developers": [
{
"value": "Example Publisher",
"count": 12,
"users": 250000
}
],
"changes": {
"total": 1,
"types": [
{
"value": "status",
"count": 1
}
],
"daily": [
{
"date": "2026-07-14",
"count": 1,
"users_delta": 0,
"rating_count_delta": 0
}
]
}
}
}curl "https://api.crawlora.net/api/v1/datasets/chrome-extensions/metrics" \
-H "x-api-key: $CRAWLORA_API_KEY"