Endpoint Playground
Test Crawlora's App Store Chart Categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 6014,
"name": "Games"
},
{
"id": 7012,
"name": "Games/Puzzle",
"parent_id": 6014
}
],
"collections": [
{
"id": "topfreeapplications",
"platform": "phone",
"chart_type": "top_free",
"active": true
},
{
"id": "topmacapps",
"platform": "mac",
"chart_type": "top",
"active": false
}
]
}
}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 every category ID and chart collection accepted by `/appstore/list`, including Games and Magazines & Newspapers subgenres with their parent ID. Collections carry their device platform (`phone`, `pad`, `mac`), chart type (`top_free`, `top_paid`, `top_grossing`, `top`, `new`), and whether the feed currently returns entries.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 6014,
"name": "Games"
},
{
"id": 7012,
"name": "Games/Puzzle",
"parent_id": 6014
}
],
"collections": [
{
"id": "topfreeapplications",
"platform": "phone",
"chart_type": "top_free",
"active": true
},
{
"id": "topmacapps",
"platform": "mac",
"chart_type": "top",
"active": false
}
]
}
}curl "https://api.crawlora.net/api/v1/appstore/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"