GET Channels
GET /brands/{brandId}/channelsLists all channels connected to a brand (both active and inactive).
Path parameters
Section titled “Path parameters”| Parameter | Type | Description |
|---|---|---|
brandId | integer | ID from the brands list. |
Query parameters:
| Parameter | Type | Default | Min | Max | Description |
|---|---|---|---|---|---|
page | integer | 1 | 1 | - | Page number. |
per_page | integer | 10 | 1 | 100 | Items per page. |
Request
Section titled “Request”curl "https://nuelink.com/api/public/v1/brands/13493/channels?per_page=10&page=1" -H "Authorization: Bearer YOUR_API_KEY"Response: 200 OK
{ "status":"success", "data":[ { "id":299664, "name":"fernwood-signups", "status":"ACTIVE", "type":"Instagram", "createdAt":"2026-04-16T10:32:53.000000Z", "updatedAt":"2026-04-16T10:32:53.000000Z" }, { "id":60112, "name":"fernwoodbotanicals", "status":"INACTIVE", "type":"Instagram", "createdAt":"2023-08-10T11:39:10.000000Z", "updatedAt":"2025-04-06T11:00:17.000000Z" }, { "id":60111, "name":"FernwoodBotanicals", "status":"INACTIVE", "type":"X", "createdAt":"2023-08-10T11:38:53.000000Z", "updatedAt":"2026-01-06T10:55:07.000000Z" } ], "pagination":{ "currentPage":1, "perPage":10, "total":8, "lastPage":1, "nextPageUrl":null, "prevPageUrl":null }}Response fields (per channel)
Section titled “Response fields (per channel)”| Field | Type | Description |
|---|---|---|
id | integer | Channel identifier. |
name | string | Display name of the connected social account. |
status | string | ACTIVE (connected and working) or INACTIVE (disconnected or needs re-auth). |
type | string | Platform type (see table below). |
createdAt | string | ISO 8601 timestamp of when the channel was connected. |
updatedAt | string | ISO 8601 timestamp. |
Supported values for type
Section titled “Supported values for type”Facebook, Instagram, Threads, LinkedIn, Google Business, YouTube, TikTok, Pinterest, X/Twitter, Mastodon, Bluesky, Telegram.