Posteady
Posteady Docs
API

Quickstart

Publish, schedule, and list posts with the Posteady REST API.

  • Base URL: https://www.posteady.com/api/v1
  • Auth: Authorization: Bearer pk_... on every request

Publish immediately

curl -X POST https://www.posteady.com/api/v1/posts \
  -H "Authorization: Bearer pk_..." \
  -H "Content-Type: application/json" \
  -d '{
    "accountIds": ["<account-uuid>"],
    "posts": [{ "text": "Hello from the Posteady API" }]
  }'

Schedule for later

curl -X POST https://www.posteady.com/api/v1/scheduled-posts \
  -H "Authorization: Bearer pk_..." \
  -H "Content-Type: application/json" \
  -d '{
    "accountIds": ["<account-uuid>"],
    "posts": [{ "text": "Scheduled hello" }],
    "scheduledAt": "2026-07-01T09:00:00Z",
    "timezone": "Asia/Seoul"
  }'

List published posts

curl "https://www.posteady.com/api/v1/posts?provider=threads&limit=20&sort=recent" \
  -H "Authorization: Bearer pk_..."

For the full endpoint catalog and an interactive playground, see the Reference.