Developer documentation

Platforms

Verified rules and current status

This table reads the platform registry. Unverified numeric rules are not published. Call GET /api/v1/platforms for current machine-readable status.

PlatformStatusVerified limitsNote
InstagramComing soonUnder verificationBusiness or Creator account
ThreadsComing soonUnder verificationOne topic tag
FacebookComing soonUnder verificationPublishes to a Page
TikTokComing soonUnder verificationContent Posting API audit required
YouTubeComing soonUnder verificationTitle required
TelegramComing soonUnder verificationConnects with a bot token
BlueskyComing soonUnder verificationConnects with an app password

Request platform status

curl -H 'Authorization: Bearer <API_KEY>' \
  -H 'X-Workspace-Id: <WORKSPACE_ID>' \
  'https://<service-domain>/api/v1/platforms'

Current status response

{
  "platforms": [
    {
      "platform": "instagram",
      "label": "Instagram",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "비즈니스·크리에이터 계정"
    },
    {
      "platform": "threads",
      "label": "Threads",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "주제 태그 1개"
    },
    {
      "platform": "facebook",
      "label": "Facebook",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "페이지에 발행"
    },
    {
      "platform": "tiktok",
      "label": "TikTok",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "Content Posting API 감사 필요"
    },
    {
      "platform": "youtube",
      "label": "YouTube",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "제목 필수"
    },
    {
      "platform": "telegram",
      "label": "Telegram",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "봇 토큰으로 연결"
    },
    {
      "platform": "bluesky",
      "label": "Bluesky",
      "status": "soon",
      "verified": false,
      "limits": null,
      "note": "앱 비밀번호로 연결"
    }
  ]
}

Machine-readable note values currently remain in Korean; use platform IDs and status codes for integration.