Endpoint Playground
Test Crawlora's Get trending Chrome Web Store items 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/trending" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query | |
| item_type | string | No | Item type enum: extension, theme, app, unknown | |
| category | string | No | Exact category | |
| developer | string | No | Exact developer | |
| developer_email | string | No | Exact developer email | |
| permission | string | No | Exact permission | |
| status | string | No | Status enum: active, removed | |
| manifest_version | integer | No | Manifest version enum: 2, 3 | |
| collects_data | boolean | No | Data-collection filter | |
| has_broad_host_access | boolean | No | Broad-host-access filter | |
| min_users | integer | No | Minimum users | |
| min_rating | number | No | Minimum rating | |
| min_rating_count | integer | No | Minimum rating count | |
| page | integer | No | Page number | |
| page_size | integer | No | Page size, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "chrome-extensions",
"items": [
{
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"name": "uBlock Origin",
"users_delta": 10000,
"rating_count_delta": 50
}
],
"page": 1,
"page_size": 20,
"sort": "trending_desc"
}
}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 stored Chrome Web Store items ranked by the latest observed user and rating-count movement. Filters match the search endpoint; sort is fixed to `trending_desc`. 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",
"items": [
{
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"name": "uBlock Origin",
"users_delta": 10000,
"rating_count_delta": 50
}
],
"page": 1,
"page_size": 20,
"sort": "trending_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/chrome-extensions/trending" \
-H "x-api-key: $CRAWLORA_API_KEY"