Introduction

The Publisher Channels API is used to obtain a list of all available publishing platforms. Each platform contains information such as name, title, domain, and icon.

Basic Usage

curl -X GET 'https://api.acedata.cloud/publisher/channels' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Response Example

{
  "success": true,
  "data": [
    {
      "name": "zhihu",
      "title": "Zhihu",
      "domain": "zhihu.com"
    },
    {
      "name": "medium",
      "title": "Medium",
      "domain": "medium.com"
    },
    {
      "name": "csdn",
      "title": "CSDN",
      "domain": "csdn.net"
    }
  ]
}

Notes

  • This interface is free to use and does not consume points.
  • The returned list of platforms is real-time data and may change as platform support updates.