App Metrics
POST
/expose/app/metricsCredits Cost
Cost Type | Cost Credits |
---|---|
Request Credits | 1 |
Credits Cost of Each Metrics
Estimated Downloads
Cost Type | Cost Credits |
---|---|
Base Credits | 250 |
Estimated Revenue
Cost Type | Cost Credits |
---|---|
Base Credits | 250 |
Visiblity Score
Cost Type | Cost Credits |
---|---|
Base Credits | 10 |
Ratings
Cost Type | Cost Credits |
---|---|
Base Credits | 10 |
Request
Body Params application/json
Your request param.
appId
string
required
region
string
required
Two character region code,like US.
Default:
US
metrics
array[string]
required
App Metrics List
Allowed values:
DOWNLOAD_FORECASTREVENUE_FORECASTVISIBILITY_SCORERATING
device
enum<string> | enum<null>
optional
App Store Device, only for AppStore query.
Allowed values:
IPHONEIPAD
Example
{
"appId": "416048305",
"region": "KR",
"metrics": [
"RATING",
"DOWNLOAD_FORECAST"
],
"device": "IPHONE"
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
requestParam
object (AppMetricsQuery)
optional
Your request param.
appId
string | null
required
region
string | null
required
Two character region code,like US.
Default:
US
metrics
array[string] | null
required
App Metrics List
Allowed values:
DOWNLOAD_FORECASTREVENUE_FORECASTVISIBILITY_SCORERATING
device
enum<string> | enum<null>
optional
App Store Device, only for AppStore query.
Allowed values:
IPHONEIPAD
result
object
optional
Your response.
downloadForecast
object (DailyValue)
optional
Estimated Downloads
revenueForecast
object (DailyValue)
optional
Estimated Revenue
visibilityScore
object (DailyValue)
optional
Visiblity Score
rating
object (RatingDetailVO)
optional
Ratings
ratingChange
object (RatingDetailVO)
optional
Ratings Change
creditsCost
object (OpenApiPointCostVO)
optional
Credits cost info.
requestCredits
integer | null
optional
baseCredits
integer | null
optional
extraCredits
integer | null
optional
totalCostCredits
integer | null
optional
Example
{
"code": 200,
"msg": "success",
"data": {
"requestParam": {
"region": "KR",
"appId": "416048305",
"metrics": [
"RATING",
"DOWNLOAD_FORECAST"
],
"device": "IPHONE"
},
"result": {
"downloadForecast": {
"date": "2024-05-14",
"value": 1146
},
"revenueForecast": null,
"visibilityScore": null,
"rating": {
"date": "2024-05-14",
"value": {
"ratingCount": [
0,
0,
0,
0,
0
],
"totalCount": 0,
"avgScore": 0
}
},
"ratingChange": null
},
"creditsCost": {
"requestCredits": 1,
"baseCredits": 260,
"extraCredits": 0,
"totalCostCredits": 261
}
}
}
Last modified: 8 个月前