XreplyAIDevelopers
API ReferenceSchedules & Plans

List posting schedules

Requires scope: `schedules:read`. Returns each connected account's posting schedule and its slots.

GET
/posting_schedules
AuthorizationBearer <token>

A personal API key created in the dashboard (Starter, Pro, and Team plans).

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/posting_schedules"
{  "posting_schedules": [    {      "id": 55,      "social_account_id": 301,      "timezone": "America/New_York",      "max_posts_per_day": 3,      "paused": false,      "posting_slots": [        {          "id": 900,          "day_of_week": 1,          "time_of_day": "09:00",          "enabled": true,          "source": "manual"        }      ]    }  ]}