Endpoint Playground
Test Crawlora's App Store Developer Apps 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/developer/284882218?country=us&lang=en-us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| dev_id (path) | string | Yes | 284882218 | Developer artist ID |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en-us | Result language tag |
{
"code": 200,
"msg": "OK",
"data": {
"id": "123456789",
"name": "OpenAI",
"apps": [
{
"id": "6448311069",
"title": "ChatGPT"
}
]
}
}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 App Store apps associated with a specific developer artist ID.
{
"code": 200,
"msg": "OK",
"data": {
"id": "123456789",
"name": "OpenAI",
"apps": [
{
"id": "6448311069",
"title": "ChatGPT"
}
]
}
}curl "https://api.crawlora.net/api/v1/appstore/developer/<dev_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"