Apple Product API
The Apple Product API returns the complete App Store product page for a given app id — title, developer, ratings, price, in-app purchases, screenshots, description, version history and privacy details. Each successful request costs 5 API credits.
Endpoint:
https://api.scrapingdog.com/apple/productAPI Parameters
🔑
Scrapingdog Parameters
api_keyRequiredYour personal API key. Available on your dashboard.
Type: String
🔗
Request Parameters
product_idRequiredThe numeric App Store product id of the app. It is the number afteridin an app URL (e.g.,534220544fromapps.apple.com/us/app/id534220544).
Type: StringtypeOptionalThe type of Apple product page to return. Default:app.
Type: StringcountryOptionalTwo-letter country code for the App Store region (e.g.,us,uk,fr). Default:us.
Type: StringhtmlOptionalSet totrueto return the raw HTML of the product page instead of parsed JSON. Default:false.
Type: Boolean
API Examples

Code to Integrate
curl "https://api.scrapingdog.com/apple/product?api_key=APIKEY&product_id=534220544&country=us"
import requests params = { "api_key": "APIKEY", "product_id": "534220544", "country": "us" } response = requests.get("https://api.scrapingdog.com/apple/product", params=params) print(response.json())
const params = new URLSearchParams({ api_key: "APIKEY", product_id: "534220544", country: "us" }); const response = await fetch(`https://api.scrapingdog.com/apple/product?${params}`); const data = await response.json(); console.log(data);
<?php $url = 'https://api.scrapingdog.com/apple/product?' . http_build_query([ 'api_key' => 'APIKEY', 'product_id' => '534220544', 'country' => 'us', ]); echo file_get_contents($url);
API Response
{
"product_results": {
"id": "534220544",
"type": "app",
"title": "The Great Coffee App",
"developer": "Baglan Dosmagambetov",
"developer_link": "https://apps.apple.com/us/developer/baglan-dosmagambetov/id429890736",
"developer_id": "429890736",
"bundle_id": "com.mobicreators.GreatCoffeeApp",
"link": "https://apps.apple.com/us/app/the-great-coffee-app/id534220544",
"price": "$2.99",
"extracted_price": 2.99,
"logo": "https://is1-ssl.mzstatic.com/image/thumb/Purple124/v4/01/69/0b/01690bcc-2a50-dd57-c942-09a2a3a908d8/AppIcon.png/512x512bb.png",
"rating": 4.7,
"reviews": 190,
"ratings": [
{ "stars": 5, "count": 158 },
{ "stars": 4, "count": 14 },
{ "stars": 3, "count": 9 },
{ "stars": 2, "count": 5 },
{ "stars": 1, "count": 4 }
],
"genres": [
{ "name": "Food & Drink", "id": "6023" }
],
"chart": { "position": 76, "category": "Food & Drink" },
"size": "251 MB",
"age_rating": "13+",
"languages": ["English", "French", "German", "Japanese", "Spanish"],
"compatibility": [
"Requires iOS 12.0 or later.",
"Requires iPadOS 12.0 or later.",
"Requires macOS 11.0 or later and a Mac with Apple M1 chip or later."
],
"in_app_purchases": true,
"copyright": "© 2020 Mobile Creators",
"latest_version": "3.4.2",
"release_date": "2020-10-23T21:08:35.000Z",
"whats_new": "Added support for new devices",
"description": "Popular espresso-based drinks and alternative brewing methods by an expert barista with many years of experience...",
"screenshots": {
"iphone": [
"https://is1-ssl.mzstatic.com/image/thumb/Purple128/v4/4e/38/db/mzl.ayrzqlwu.jpg/1125x2436bb.jpg",
"https://is1-ssl.mzstatic.com/image/thumb/Purple118/v4/8d/2b/3a/mzl.lwqzyslh.jpg/1125x2436bb.jpg"
],
"ipad": [
"https://is1-ssl.mzstatic.com/image/thumb/Purple128/v4/41/ae/f9/pr_source.png/2732x2048bb.jpg"
]
},
"user_reviews": [
{
"id": "3430818860",
"title": "Great app for great coffee!",
"author": "Jinju ^.^",
"rating": 5,
"date": "2018-11-18T04:56:22.000Z",
"text": "What more could one ask for in a coffee app? Instructions on how to prepare each drink, plus a video that demonstrates how each drink is made."
}
],
"more_by_developer": [
{
"id": "766214869",
"title": "The Great Photo App",
"subtitle": "Photo & Video",
"developer": "Baglan Dosmagambetov",
"rating": 4.1,
"reviews": 160,
"age_rating": "4+",
"logo": "https://is1-ssl.mzstatic.com/image/thumb/Purple124/v4/ab/af/0b/AppIcon.png/512x512ia.jpg",
"link": "https://apps.apple.com/us/app/the-great-photo-app/id766214869",
"price": "$2.99"
}
],
"you_may_also_like": [
{
"id": "1512681263",
"title": "Coffee Book: Brew Journal",
"subtitle": "Timer, Log, Recipes",
"developer": "Alexander Logan",
"rating": 4.7,
"reviews": 83,
"age_rating": "4+",
"logo": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/48/8c/3d/Placeholder.mill/512x512bb.jpg",
"link": "https://apps.apple.com/us/app/coffee-book-brew-journal/id1512681263",
"price": "Free"
}
]
}
}