Mediago API
en
  • en
  • zh
  1. Ad Management
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. Ad Management

Get Authorized Ad List

GET
https://api.mediago.io/manage/v1/campaign/ad
Last modified:2025-10-13 07:21:33
Get a list of ad that you have authority to get data or manage. Returns an array of ad_id and ad_name in the response body if success with http code 200.
QPS limit: 60, IP limit: 15.

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/manage/v1/campaign/ad' \
--header 'Authorization: Bearer your_access_token_here'

Responses

🟢200Success Response
application/json
Body

Example
[
  {
    "ad_id": "1",
    "ad_name": "demo-ad",
    "campaign_id": "1",
    "height": "72",
    "width": "128"
  },
  {
    "ad_id": "2",
    "ad_name": "demo-ad2",
    "campaign_id": "2",
    "height": "250",
    "width": "300"
  }
]
🟠400400 Bad Request
🟠401401 Unauthorized
Modified at 2025-10-13 07:21:33
Previous
Ad Management
Next
Batch Active/Pause Ads
Built with