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

FieldRequiredTypeDescriptionDefaultExample
timezoneOptionalstringTimezone00
report_typeOptionalstringType of report statistics, event|requesteventevent
start_timeRequiredstringThe start time of the requested data, in the format of "yyyy-MM-dd". Supports querying for the past week.——"2023-04-23"
end_timeRequiredstringThe end time of the requested data, in the format of "yyyy-MM-dd". Supports querying for the past week.——"2023-04-24"

Response Results

NameParent NodeTypeDescription
codeint200 means success, others mean failure
datajsonResult list
data_listdataarray<json>
creative_iddata_liststringCreative ID
datedata_listString"2023-04-27 08:00:00"
countrydata_liststringCountry Code
impressionsdata_listnumberImpressions
clicksdata_listnumberClicks
conversionsdata_listnumberConversions
costdata_listnumberCost , 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"
}