Apple Store App Detail
Apple Store App Detail is used to fetch App Store app detail data by app detail page URL.
- Fetch App Store app details by app page URL
- Support region-based requests
- Return app name, description, ratings, version, languages, and information section fields
- Accept multiple app detail URLs in one request
Use XCrawl to Fetch Apple Store App Details
Usage
curl -s -X POST 'https://run.xcrawl.com/v1/data' \
-H 'Authorization: Bearer $XCRAWL_API_KEY'\
-H 'Content-Type: application/json' \
-d '{
"engine": "apple_store_app_detail",
"location": "US",
"app_detail_url_list": [
"https://apps.apple.com/us/app/instagram/id389801252"
]
}'Request parameter notes:
enginemust beapple_store_app_detaillocationspecifies the target regionapp_detail_url_listaccepts one or more App Store app detail page URLs
Response Example
{
"result": [
{
"app_name": "Instagram",
"app_description": "Little moments lead to big friendships. Share yours on Instagram.",
"app_screenshot": [
"https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/..."
],
"app_image": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/...",
"app_category": "Photo & Video",
"app_author_name": "Instagram, Inc.",
"app_rating_value": 4.7,
"app_rating_count": 28900636,
"app_size": "535.5 MB",
"app_languages_summary": "English and 30 more",
"app_age_rating": "13+",
"app_version": "424.0.0",
"app_version_release_notes": "Performance optimizations and stability improvements for a smoother, more reliable experience."
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
app_detail_url_list | array | Accepts one or more App Store app detail page URLs. |
Parameter Notes
locationdefaults toUSlocationsupports multiple region values such asUS,HK,CA,GB, andJPapp_detail_url_listdefaults to an empty array and should contain App Store app detail page URLs
Response Fields
| Field | Type | Description |
|---|---|---|
app_name | string | App name. |
app_description | string | Full app description from the detail page. |
app_screenshot | array | App screenshot URL list. |
app_image | string | Primary app image or icon URL. |
app_category | string | Primary app category. |
app_push_time | string | null | App publish time. |
app_operating_system | string | Operating system compatibility summary. |
app_available_on_device | string | Supported Apple device types. |
app_author_name | string | Developer or publisher name. |
app_author_url | string | Developer page URL. |
app_author_type | string | Schema type of the author object. |
app_offers_type | string | Schema type of the offers object. |
app_offers_value | number | string | null | App price value. |
app_offers_price | string | Currency code of the offer. |
app_offers_category | string | Offer category such as free or paid. |
app_rating_value | number | string | null | Average app rating. |
app_rating_count | number | string | null | Total number of ratings or reviews. |
app_rating_type | string | Schema type of the aggregate rating object. |
app_seller | string | Seller name from the Information section. |
app_size | string | App package size. |
app_category_detail | string | Category field from the Information section. |
app_compatibility | string | Detailed compatibility information. |
app_location_notice | string | Location usage notice. |
app_languages_summary | string | Language summary such as English and 30 more. |
app_languages_text | string | Raw language text. |
app_languages_full_text | string | Expanded full language list text. |
app_languages_list | array | Parsed language list. |
app_age_rating | string | Age rating summary. |
app_age_rating_description | string | Detailed age rating description. |
app_in_app_purchases | string | Whether the app includes in-app purchases. |
app_in_app_purchases_text | string | Raw in-app purchase text. |
app_copyright | string | Copyright text. |
app_version | string | Latest app version. |
app_version_release_time | string | Release time label of the latest version. |
app_version_release_notes | string | Release notes of the latest version. |
