Apple Store App Detail
Apple Store App Detail 用于按应用详情页链接获取 App Store 应用详情数据。
- 按应用详情页链接抓取 App Store 应用信息
- 支持按地区发起请求
- 返回应用名称、描述、评分、版本、语言和信息区字段
- 支持一次请求传入多个应用链接
使用 XCrawl 获取 Apple Store App 详情
使用方式
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"
]
}'请求参数说明:
engine固定为apple_store_app_detaillocation用于指定请求地区app_detail_url_list用于传入一个或多个 App Store 应用详情页链接
响应示例
{
"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."
}
]
}参数说明
必填参数
| 参数 | 类型 | 说明 |
|---|---|---|
location | string | 指定请求地区。 |
app_detail_url_list | array | 传入一个或多个 App Store 应用详情页链接。 |
参数补充说明
location默认值为USlocation支持多个地区值,例如US、HK、CA、GB、JPapp_detail_url_list默认值为空数组,数组元素应为 App Store 应用详情页链接
响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
app_name | string | 应用名称。 |
app_description | string | 应用详情页中的完整描述文本。 |
app_screenshot | array | 应用截图链接列表。 |
app_image | string | 应用主图或图标链接。 |
app_category | string | 应用主分类。 |
app_push_time | string | null | 应用发布时间。 |
app_operating_system | string | 兼容系统说明。 |
app_available_on_device | string | 支持的 Apple 设备类型。 |
app_author_name | string | 开发者或发布者名称。 |
app_author_url | string | 开发者页面链接。 |
app_author_type | string | 开发者对象类型。 |
app_offers_type | string | 价格对象类型。 |
app_offers_value | number | string | null | 应用价格值。 |
app_offers_price | string | 价格货币代码。 |
app_offers_category | string | 价格类别,例如 free 或 paid。 |
app_rating_value | number | string | null | 平均评分。 |
app_rating_count | number | string | null | 评分或评论总数。 |
app_rating_type | string | 聚合评分对象类型。 |
app_seller | string | 信息区中的销售商名称。 |
app_size | string | 应用包体大小。 |
app_category_detail | string | 信息区中的分类字段。 |
app_compatibility | string | 兼容性详细说明。 |
app_location_notice | string | 位置信息使用说明。 |
app_languages_summary | string | 语言摘要,例如 English and 30 more。 |
app_languages_text | string | 语言原始文本。 |
app_languages_full_text | string | 展开的完整语言列表文本。 |
app_languages_list | array | 解析后的语言列表。 |
app_age_rating | string | 年龄分级摘要。 |
app_age_rating_description | string | 年龄分级详细说明。 |
app_in_app_purchases | string | 是否包含 App 内购买。 |
app_in_app_purchases_text | string | App 内购买原始文本。 |
app_copyright | string | 版权说明。 |
app_version | string | 当前版本号。 |
app_version_release_time | string | 当前版本发布时间标记。 |
app_version_release_notes | string | 当前版本更新说明。 |
