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

App Store App Details API Playground

Test Crawlora's App Store app details API. Preview parameters, credit cost, response schema, sample JSON, and code examples before sending a live request.

GETapiKey1 credit/requestappstore.appDetailsResponseDocAppStore

Endpoint

Choose one catalog endpoint for this request.

10 shown
GETapiKey1 credit/requestappstore.appDetailsResponseDocAppStore
GET /appstore/app

Retrieve full App Store app details

Returns normalized app metadata from the App Store lookup API. Provide either `id` or `app_id`.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Required query parameters

Provide either id or app_id. You do not need both.

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

appstore.app

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "id": "6448311069",
    "title": "ChatGPT",
    "developer": "OpenAI",
    "score": 4.9,
    "ratings": 1200000,
    "version": "1.2026.001",
    "url": "https://apps.apple.com/us/app/chatgpt/id6448311069"
  }
}

Endpoint details

Returns normalized app metadata from the App Store lookup API. Provide either `id` or `app_id`.

Method
GET
Path
/appstore/app
Authentication
apiKey
Credit cost
1 credit/request
Platform
AppStore
Parameters
6 documented fields

Request parameters

id:queryapp_id:querycountry:querylang:queryratings: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": "6448311069",
    "title": "ChatGPT",
    "developer": "OpenAI",
    "score": 4.9,
    "ratings": 1200000,
    "version": "1.2026.001",
    "url": "https://apps.apple.com/us/app/chatgpt/id6448311069"
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/appstore/app?id=<id>" \
  -H "x-api-key: <api-key>"