Saki Docs
Account

List accounts

Returns all connected social accounts for the given space.

Base URLhttps://app.usesaki.com/api
get/spaces/{space}/accounts

List accounts

Returns all connected social accounts for the given space.

AuthorizationBearer <token>

Path Parameters

spacerequiredinteger

The space ID

Response

curl -X GET "https://app.usesaki.com/api/spaces/{space}/accounts" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "data": [
    {
      "id": 0,
      "social": "string",
      "display_name": "string",
      "handler": "string",
      "avatar": "string",
      "is_active": true
    }
  ]
}