/📘 API Reference/List Accounts

List Accounts

Retrieve every social account connected to the authenticated workspace.

Endpoint

GET/accounts

Request

curl https://api.plansched.com/developers/v1/accounts \
  -H "Authorization: Bearer $PLANSCHED_KEY"

Response

{
  "data": [
    {
      "id": "acc_1a2b3c",
      "platform": "twitter",
      "handle": "@plansched",
      "display_name": "PlanSched",
      "avatar_url": "https://...",
      "status": "connected",
      "connected_at": "2026-01-14T09:12:00Z"
    },
    {
      "id": "acc_4d5e6f",
      "platform": "linkedin",
      "handle": "plansched",
      "display_name": "PlanSched",
      "status": "connected",
      "connected_at": "2026-01-14T09:15:00Z"
    }
  ]
}

Every response includes a stable id you can pass into the account_ids field of the Create Post endpoint.

Next
API Reference → Create Post
Continue