Endpoint Playground
Test Crawlora's Search the app-reviews dataset 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/apps-reviews/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over review text, title and author, max 256 characters | |
| store | string | No | Store enum: ios, android | |
| app_id | string | No | Exact app filter — iOS numeric track id or Android package, max 128 characters | |
| country | string | No | Exact storefront country filter, max 128 characters | |
| min_score | integer | No | Minimum star rating, 1 through 5 | |
| sort | string | No | Sort enum: recent, score_desc, score_asc, helpful_desc | |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"data": {
"dataset": "sample",
"items": [
{
"app_id": "sample-id",
"app_uid": "sample-id",
"country": "sample",
"last_crawled": "sample",
"reply_text": "sample",
"review_id": "sample-id",
"review_uid": "sample-id",
"reviewed_at": "sample",
"score": 1,
"store": "sample",
"text": "sample",
"thumbs_up": 1,
"title": "sample",
"url": "https://example.com/resource",
"user_name": "sample",
"version": "sample"
}
],
"page": 1,
"page_size": 1,
"sort": "sample",
"total": 1
},
"msg": "OK"
}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.
Searches user reviews scraped from the iOS App Store and Google Play, stored in a search index (one document per review). Store enum: `ios`, `android`. Sort enum: `recent`, `score_desc`, `score_asc`, `helpful_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,
"data": {
"dataset": "sample",
"items": [
{
"app_id": "sample-id",
"app_uid": "sample-id",
"country": "sample",
"last_crawled": "sample",
"reply_text": "sample",
"review_id": "sample-id",
"review_uid": "sample-id",
"reviewed_at": "sample",
"score": 1,
"store": "sample",
"text": "sample",
"thumbs_up": 1,
"title": "sample",
"url": "https://example.com/resource",
"user_name": "sample",
"version": "sample"
}
],
"page": 1,
"page_size": 1,
"sort": "sample",
"total": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/datasets/apps-reviews/search" \
-H "x-api-key: $CRAWLORA_API_KEY"