Mediago API
en
  • en
  • zh
  1. Report APIs
Mediago API
en
  • en
  • zh
  • Authentication
    • Get Access Token
      POST
  • Account Management
    • Get Authorized Account List
      GET
  • Campaign Management
    • Get Authorized Campaign List
      GET
    • Get Campaigns Detail
      GET
    • Create Campaign
      POST
    • Update Campaign
      POST
    • Batch Update Campaigns
      POST
    • Batch Active/Pause Campaigns
      POST
    • Batch Archive Campaigns
      POST
  • Ad Management
    • Get Authorized Ad List
      GET
    • Batch Active/Pause Ads
      POST
  • Sites Block Management
    • Get Account Block List
      GET
    • Block/Unblock Sites at Account
      POST
    • Get Campaign Block List
      GET
    • Block/Unblock Sites at Campaign
      POST
  • Report APIs
    • Get Daily Summary Data of All Campaign
      GET
    • Get Daily Report in Campaign Dimension
      GET
    • Get Daily Report in Ad Dimension
      GET
    • Get Hourly Realtime Data in Campaign or Ad Dimension
      GET
    • Get Account Daily Report in Site Dimension
      GET
    • Get Daily Report in Site Dimension
      GET
  1. Report APIs

Get Daily Report in Campaign Dimension

GET
https://api.mediago.io/data/v1/report/day/list
Last modified:2025-10-29 06:53:03
Get Daily Report of every campaign
tips:The API only returns campaigns that have incurred costs within the queried time interval.
QPS limit: 10

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.mediago.io/data/v1/report/day/list?start_date=2020-05-18&end_date=2020-05-25&timezone=utc8&archived_status=1' \
--header 'Authorization: Bearer your_access_token_here' \
--header 'Content-Type: application/x-www-form-urlencoded;charset=utf-8'

Responses

🟢200Success Response
application/json
Body

Example
{
    "total": 17,
    "timezone": "utc8",
    "rawdata_update_time": "2020-07-29 00:00:00",
    "results": [
        {
            "date": "2020-05-25",
            "cv_add_to_cart": 0,
            "cv_add_to_wishlist": 0,
            "cv_start_checkout": 0,
            "cv_other": 0,
            "cv_add_paymentInfo": 0,
            "click": 6690,
            "cv_purchase": 0,
            "spend": 8528.06,
            "cpc": 1,
            "name": "copy of TRV_D_US_roy_tallest-women-of-hollywood_22042020_all_RIVER",
            "impression": 6691,
            "cv_lead": 0,
            "id": "1001022",
            "cv_app_install": 0,
            "cv_complete_registration": 0,
            "conversion": 5968,
            "status": 0,
            "cv_view_content": 0,
            "cv_search": 0
        },
        {
            "date": "2020-05-23",
            "cv_add_to_cart": 0,
            "cv_add_to_wishlist": 0,
            "cv_start_checkout": 0,
            "cv_other": 0,
            "cv_add_paymentInfo": 0,
            "click": 5017,
            "cv_purchase": 0,
            "spend": 301.02,
            "cpc": 1,
            "name": "copy of TRV_D_US_roy_tallest-women-of-hollywood_22042020_all_RIVER",
            "impression": 5019,
            "cv_lead": 0,
            "id": "1001022",
            "cv_app_install": 0,
            "cv_complete_registration": 0,
            "conversion": 4524,
            "status": 0,
            "cv_view_content": 0,
            "cv_search": 0
        }
    ]
}
Modified at 2025-10-29 06:53:03
Previous
Get Daily Summary Data of All Campaign
Next
Get Daily Report in Ad Dimension
Built with