Yes. The endpoint accepts either the numeric appId or the full App Store URL and normalizes it internally.
Apple App Store app data API
Extract App Store app metadata including title, description, screenshots, ratings, pricing, developer info, and version details.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/appstore/detail', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
appId: '1492793493',
options: {
lang: 'tr',
timeout: 30000
}
})
});
const { data } = await response.json();
console.log(data.appName, data.rating, data.version);Everything you need for reliable app store detail workflows.
Get app name, summary, description, icon, screenshots, and category fields.
Read average rating, rating count, review count, and rating distribution.
Includes free/paid status, formatted price, currency, and content rating.
Extract developer name, seller, website, and related identity fields.
Get release date, last update date, version, minimum OS version, and what's new.
Capture supported devices, supported languages, and privacy policy links.
Get started in minutes with our simple API.
Sign up for free and get your API key instantly. No credit card required.
Use our simple REST API with your favorite programming language.
Receive clean JSON responses ready to use in your application.
Get clean, structured JSON data with every request. Our API returns comprehensive data including status codes, timing information, and your remaining credits.
{
"success": true,
"data": {
"appId": "1492793493",
"bundleId": "com.askipo.app",
"appName": "Askipo",
"icon": "https://is1-ssl.mzstatic.com/image/thumb/Purple...",
"summary": "Daily well-being guide",
"description": "Askipo helps users build healthier daily routines...",
"screenshots": [
{
"url": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource...",
"width": 1290,
"height": 2796
}
],
"ipadScreenshots": [],
"appletvScreenshots": [],
"category": "Health & Fitness",
"categoryId": "6013",
"genres": ["Health & Fitness", "Lifestyle"],
"rating": 4.8,
"ratingCount": 1240,
"reviewCount": 1183,
"ratingDistribution": {
"5": 1101,
"4": 84,
"3": 21,
"2": 9,
"1": 25
},
"free": true,
"price": null,
"currency": "TRY",
"contentRating": "4+",
"developer": {
"name": "Askipo Teknoloji A.S.",
"id": "123456789",
"seller": "Askipo Teknoloji A.S.",
"website": "https://askipo.com",
"email": null,
"phone": null,
"address": null
},
"releaseDate": 1700000000,
"lastUpdate": 1710000000,
"version": "2.3.1",
"minimumOsVersion": "15.0",
"whatsNew": "Performance improvements and bug fixes.",
"sizeBytes": 148734976,
"supportedDevices": ["iPhone", "iPad"],
"languages": ["tr", "en"],
"privacyPolicy": "https://askipo.com/privacy",
"url": "https://apps.apple.com/tr/app/id1492793493",
"timing": { "total": 1800 },
"creditsUsed": 1,
"creditsRemaining": 96
}
}Common applications for App Store Detail.
Track App Store listings, rankings inputs, and product positioning.
Benchmark App Store assets, ratings, and release cadence against competitors.
Store and compare titles, screenshots, descriptions, and category changes.
Review app fundamentals before partnerships, acquisitions, or campaigns.
Everything you need to know about the App Store Detail API.
Yes. The endpoint accepts either the numeric appId or the full App Store URL and normalizes it internally.
Use the lang option with a supported storefront code such as tr, us, gb, de, or fr to localize metadata.
Yes. The response includes screenshots plus developer website and seller information when App Store exposes them.
App Store Detail uses 1 credit per request.
Get 100 free credits to test the API. No credit card required.