Public Playground
Preview the endpoint before sending a live request
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.
Playground
Retrieve apps by developer ID API Playground
Returns App Store apps associated with a specific developer artist ID.
GETapiKey1 credit/requestappstore.developerResponseDocAppStore
Endpoint details
Returns App Store apps associated with a specific developer artist ID.
- Method
- GET
- Path
- /appstore/developer/{dev_id}
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- AppStore
- Parameters
- 4 documented fields
Request parameters
dev_id:pathcountry:querylang:queryx-api-key:header
Response schema fields
codedatadata[].app_iddata[].appletv_screenshotsdata[].content_ratingdata[].currencydata[].current_version_reviewsdata[].current_version_scoredata[].descriptiondata[].developerdata[].developer_iddata[].developer_url
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"id": "123456789",
"name": "OpenAI",
"apps": [
{
"id": "6448311069",
"title": "ChatGPT"
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/appstore/developer/<dev_id>" \
-H "x-api-key: <api-key>"