Nimply Developers
API ReferenceChannels

Get a channel's posting schedule

GET
/v1/channels/{id}/schedule

Returns the configured posting time slots per weekday. Useful for scheduling posts into the next available slot.

AuthorizationBearer <token>

Workspace API key (nim_live_...)

In: header

Path Parameters

id*string

Channel id

Response Body

application/json

curl -X GET "https://example.com/v1/channels/string/schedule"
{  "channelId": "123e4567-e89b-12d3-a456-426614174000",  "timezone": "Europe/Berlin",  "days": [    {      "day": "monday",      "paused": false,      "times": [        "09:00",        "13:30",        "18:00"      ]    }  ]}
Empty