Channels
Create Channel
Creates a new channel. The channel is automatically approved on creation. Limited to 100 channels per day per publisher; the cap resets at 00:00 UTC.
POST
/pub_api/v3/channels
write:channels
Body Parameters
|
namerequired
string
|
Channel display name (max 25 characters). |
|
source_urlrequired
string
|
Channel URL. Must be unique per publisher. |
|
categoryoptional
string
|
One of: Facebook, Twitter, Instagram, Linkedin, Youtube, Website / Blog, Whatsapp, Telegram, Media Buyer / Affiliate Network, Cashback Website, Deal & Coupon Website, Mobile App, Browser Extension / Shortening Links, Email / Sms, Others. |
Request
curl -X POST https://developers.cuelinks.com/pub_api/v3/channels \ -H "Authorization: Token YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "My Telegram", "source_url": "https://t.me/mychannel", "category": "Telegram" }'
201 Created
201
{ "data": { "id": 3425, "name": "My Telegram", "source_url": "https://t.me/mychannel", "category": "Telegram", "status": "approved", "is_default": false, "created_at": "2026-03-25T10:00:00Z" } }
422 Duplicate URL
422
{ "error": "Channel with this source URL already exists" }
429 Too Many Requests
429
{ "error": "Daily limit reached. You can create up to 100 channels per day. Try again after 2026-03-26.", "limit": 100, "used": 100, "resets_at": "2026-03-26T00:00:00Z" }