Endpoint Playground
Test Crawlora's App Store Editorial Category Page 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/editorial/category?device=iphone&category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| device | string | Yes | iphone | Apple device catalog |
| category_id | string | Yes | Numeric App Store editorial page ID, discovered from appstore_editorial (same device) | |
| country | string | No | Two-letter storefront country code | |
| lang | string | No | Result language tag |
{
"code": 200,
"msg": "OK",
"data": {
"device": "vision",
"section": "category",
"title": "Entertainment Apps",
"seo_title": "Entertainment Apps for Vision - App Store",
"shelves": [
{
"id": "shelf_eds.<id>",
"title": "The Best Entertainment Apps",
"content_type": "largeBrick",
"items": [
{
"kind": "Lockup",
"id": 389801252,
"title": "Amazon Prime Video",
"subtitle": "Originals, movies, TV, sports",
"developer_name": "AMZN Mobile LLC",
"url": "https://apps.apple.com/us/app/amazon-prime-video/id545519333"
}
]
}
]
}
}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 the curated editorial shelves for one device category page (e.g. "Entertainment Apps for Vision"). `category_id` is a numeric, device-specific editorial page ID — not a static enum — discovered from an `appstore_editorial` response for the SAME `device`, in its "Browse by Category" shelf items' `destination_id` field. `device` enum: `iphone`, `ipad`, `mac`, `vision`, `watch`, `tv`.
{
"code": 200,
"msg": "OK",
"data": {
"device": "vision",
"section": "category",
"title": "Entertainment Apps",
"seo_title": "Entertainment Apps for Vision - App Store",
"shelves": [
{
"id": "shelf_eds.<id>",
"title": "The Best Entertainment Apps",
"content_type": "largeBrick",
"items": [
{
"kind": "Lockup",
"id": 389801252,
"title": "Amazon Prime Video",
"subtitle": "Originals, movies, TV, sports",
"developer_name": "AMZN Mobile LLC",
"url": "https://apps.apple.com/us/app/amazon-prime-video/id545519333"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/appstore/editorial/category?device=<device>&category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"