Creative hourly report
You need to use Token, for more details, please check token
Description of the time for pulling report data: The data will be available about 5 hours after the day. It is recommended to pull it after 5 am the next day.
Example: Suppose you pull the data of August 1st in UTC+0, and the data can be retrieved after 5:00 am on August 2 in UTC+0.
Request Address
https://scaler.taurusx.com/openapi/report_hourly
Request Method
GET
Request Parameters
Field | Required | Type | Description | Default | Example |
---|---|---|---|---|---|
timezone | Optional | string | Timezone | 0 | 0 |
report_type | Optional | string | Type of report statistics, event|request | event | event |
start_time | Required | string | The start time of the requested data, in the format of "yyyy-MM-dd" . Supports querying for the past week. | —— | "2023-04-23" |
end_time | Required | string | The end time of the requested data, in the format of "yyyy-MM-dd" . Supports querying for the past week. | —— | "2023-04-24" |
Response Results
Name | Parent Node | Type | Description |
---|---|---|---|
code | int | 200 means success, others mean failure | |
data | json | Result list | |
data_list | data | array<json> | |
creative_id | data_list | string | Creative ID |
date | data_list | String | "2023-04-27 08:00:00" |
country | data_list | string | Country Code |
impressions | data_list | number | Impressions |
clicks | data_list | number | Clicks |
conversions | data_list | number | Conversions |
cost | data_list | number | Cost , in US dollars |
Response example
JSON
{
"code": 200,
"data": {
"data_list": [
{
"creative_id": 10001173,
"date": "2023-10-10 07:00:00",
"country": "IN",
"clicks": 2,
"conversions": 0,
"cost": 3.008888636713743034,
"impressions": 116
}
],
},
"msg": "ok"
}
{
"code": 200,
"data": {
"data_list": [
{
"creative_id": 10001173,
"date": "2023-10-10 07:00:00",
"country": "IN",
"clicks": 2,
"conversions": 0,
"cost": 3.008888636713743034,
"impressions": 116
}
],
},
"msg": "ok"
}