App Store Detail
Extract App Store app metadata including title, description, screenshots, ratings, pricing, developer info, and version details.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
appId | string | Store app identifier. |
options.lang | string | Language code. |
Example Request
Use direct HTTP requests against the public API base URL.
Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/appstore/detail', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 appId: '1492793493',9 options: {10 lang: 'tr',11 }12 })13});14 15const { data } = await response.json();16console.log(data.appName, data.rating, data.version);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "appId": "1492793493",5 "bundleId": "com.askipo.app",6 "appName": "Askipo",7 "icon": "https://is1-ssl.mzstatic.com/image/thumb/Purple...",8 "summary": "Daily well-being guide",9 "description": "Askipo helps users build healthier daily routines...",10 "screenshots": [11 {12 "url": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource...",13 "width": 1290,14 "height": 279615 }16 ],17 "ipadScreenshots": [],18 "appletvScreenshots": [],19 "category": "Health & Fitness",20 "categoryId": "6013",21 "genres": ["Health & Fitness", "Lifestyle"],22 "rating": 4.8,23 "ratingCount": 1240,24 "reviewCount": 1183,25 "ratingDistribution": {26 "5": 1101,27 "4": 84,28 "3": 21,29 "2": 9,30 "1": 2531 },32 "free": true,33 "price": null,34 "currency": "TRY",35 "contentRating": "4+",36 "developer": {37 "name": "Askipo Teknoloji A.S.",38 "id": "123456789",39 "seller": "Askipo Teknoloji A.S.",40 "website": "https://askipo.com",41 "email": null,42 "phone": null,43 "address": null44 },45 "releaseDate": 1700000000,46 "lastUpdate": 1710000000,47 "version": "2.3.1",48 "minimumOsVersion": "15.0",49 "whatsNew": "Performance improvements and bug fixes.",50 "sizeBytes": 148734976,51 "supportedDevices": ["iPhone", "iPad"],52 "languages": ["tr", "en"],53 "privacyPolicy": "https://askipo.com/privacy",54 "url": "https://apps.apple.com/tr/app/id1492793493",55 "timing": { "total": 1800 },56 "creditsUsed": 1,57 "creditsRemaining": 9658 }59}