Endpoint Playground
Test Crawlora's Search the apps-intelligence 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over title, developer and category, max 256 characters | |
| store | string | No | Store enum: ios, android, both | |
| category | string | No | Exact app-store category filter, max 128 characters | |
| country | string | No | Exact storefront country filter, max 128 characters | |
| developer | string | No | Exact developer/publisher name filter, max 128 characters | |
| free | boolean | No | Filter by price; true keeps only free apps, false only paid | |
| min_rating | number | No | Minimum store rating, 0 through 5 | |
| min_reviews | integer | No | Minimum ratings/review count | |
| sort | string | No | Sort enum: relevance, rating_desc, reviews_desc, installs_desc, updated_at_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,
"msg": "OK",
"data": {
"dataset": "apps",
"items": [
{
"app_uid": "ios:6448311069",
"store": "ios",
"ios_app_id": "6448311069",
"title": "ChatGPT",
"developer": "OpenAI",
"category": "Productivity",
"country": "us",
"free": true,
"score": 4.9,
"ratings_count": 7976038,
"url": "https://apps.apple.com/us/app/id6448311069"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "reviews_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.
Searches resolved iOS App Store and Google Play apps stored in a search index. Store enum: `ios`, `android`, `both`. Sort enum: `relevance`, `rating_desc`, `reviews_desc`, `installs_desc`, `updated_at_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": "apps",
"items": [
{
"app_uid": "ios:6448311069",
"store": "ios",
"ios_app_id": "6448311069",
"title": "ChatGPT",
"developer": "OpenAI",
"category": "Productivity",
"country": "us",
"free": true,
"score": 4.9,
"ratings_count": 7976038,
"url": "https://apps.apple.com/us/app/id6448311069"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "reviews_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/apps/search" \
-H "x-api-key: $CRAWLORA_API_KEY"