iDataRiver平臺 https://www.idatariver.com/zh-cn/ 提供開箱即用的蘋果應用商城app store資料採集API,供使用者按需呼叫。
介面使用詳情請參考apple App Store介面文件
介面列表
1. 獲取指定app的基礎資訊
引數 | 型別 | 是否必填 | 預設值 | 示例值 | 描述 |
---|---|---|---|---|---|
apikey | string | 是 | idr_*** | 從控制檯裡複製apikey | |
country | string | 是 | us | 國家code | |
app_id | number | 是 | 1064216828 | app唯一id,可從搜尋介面中獲取 |
python程式碼使用requests庫請求示例
import requests
# 構建請求URL
# Build request URL
url = "https://apiok.us/api/f552/app/info/v1"
# 將apikey替換為自己的
# Replace apikey with yours
params = {
'apikey': 'idr_***',
'country': 'us',
'item_id': '1064216828'
}
response = requests.get(url, params=params, timeout=60)
data = response.json()
# 列印返回結果
# print response
print(f"Your response is: {data}")
app應用詳情介面返回資料樣例
2. 獲取指定app下的評論列表
引數 | 型別 | 是否必填 | 預設值 | 示例值 | 描述 |
---|---|---|---|---|---|
apikey | string | 是 | idr_*** | 從控制檯裡複製apikey | |
country | string | 是 | us | 國家code | |
app_id | number | 是 | 1064216828 | app id |
app store應用評論列表介面
3. 搜尋指定國家app store的app
引數 | 型別 | 是否必填 | 預設值 | 示例值 | 描述 |
---|---|---|---|---|---|
apikey | string | 是 | idr_*** | 從控制檯裡複製apikey | |
country | string | 是 | us | 國家code | |
query | string | 是 | 搜尋關鍵詞 |
更多介面支援定製,持續維護中...
總結
透過蘋果App Store介面可以方便的獲取已釋出的app的公開資訊,包括app綜合評分,使用者評論,版本記錄等,能快速獲取市場的反饋從而提升運營效率。