Endpoint Playground
Test Crawlora's Apple App Store List 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/appstore/list?collection=topfreeapplications&category=6014&country=us&lang=en-us&num=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| collection | string | No | topfreeapplications | Collection slug |
| category | integer | No | 6014 | Numeric App Store category ID |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en-us | Result language tag |
| num | integer | No | 50 | Number of apps to return |
| full_detail | boolean | No | Expand each app via lookup API |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "6448311069",
"title": "ChatGPT",
"developer": "OpenAI",
"score": 4.9,
"url": "https://apps.apple.com/us/app/chatgpt/id6448311069"
}
]
}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 ranked App Store apps from an iTunes RSS collection, optionally expanded to full lookup details.
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "6448311069",
"title": "ChatGPT",
"developer": "OpenAI",
"score": 4.9,
"url": "https://apps.apple.com/us/app/chatgpt/id6448311069"
}
]
}curl "https://api.crawlora.net/api/v1/appstore/list" \
-H "x-api-key: $CRAWLORA_API_KEY"