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

Get Campaign Block List

GET
https://api.mediago.io/manage/v1/campaign/domain/block/list
Last modified:2025-10-13 07:21:33
🔴 Tips: Due to historical logic on the platform, some sites that were blocked a long time ago may display site=0. This is a normal situation. If you need to unblock such sites, you need to return site id : 0 and the corresponding site name.
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/domain/block/list?account_id=617' \
--header 'Authorization: Bearer your_access_token_here'

Responses

🟢200成功
application/json
Body

Example
{
  "code": 0,
  "data": {
    "detail": [
      {
        "domainName": "solitaired.com",
        "siteId": "62015057",
        "accountId": "617",
        "campaignId": "0",
        "operationTime": "2024-10-30 20:42:53",
        "blockOnAccount": false
      },
      {
        "domainName": "msn.com",
        "siteId": "61418979",
        "accountId": "617",
        "campaignId": "0",
        "operationTime": "2024-10-30 20:42:53",
        "blockOnAccount": true
      }
    ],
    "currentPage": 1,
    "total": 1428
  },
  "message": "Success"
}
Modified at 2025-10-13 07:21:33
Previous
Block/Unblock Sites at Account
Next
Block/Unblock Sites at Campaign
Built with