Posteady
Posteady Docs
API

빠른 시작

Posteady REST API로 발행·예약·목록 조회하기.

  • 베이스 URL: https://www.posteady.com/api/v1
  • 인증: 모든 요청에 Authorization: Bearer pk_...

즉시 발행

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": "Posteady API에서 보내는 글" }]
  }'

예약 발행

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": "예약 게시물" }],
    "scheduledAt": "2026-07-01T09:00:00Z",
    "timezone": "Asia/Seoul"
  }'

발행 게시물 목록

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

전체 엔드포인트 목록과 인터랙티브 플레이그라운드는 레퍼런스를 참고하세요.