Cue
API ReferenceSocial Accounts

List social accounts

Retrieve all social accounts for your profiles, optionally filtered by profile.

GET
/social-accounts

Authorization

bearerAuth
AuthorizationBearer <token>

API keys start with cue_sk_ prefix. Get your key from the Cue dashboard.

Example: cue_sk_abc123def456ghi789jkl012mno345pqr678stu901vwx234

In: header

Query Parameters

profile_id?string

Filter by profile ID

Response Body

application/json

application/json

application/json

curl -X GET "https://api.oncue.so/v1/social-accounts"
{
  "data": [
    {
      "id": "sac_p4n7k2m9xqhj",
      "profileId": "prf_h7k2m9xp4qnj",
      "platform": "bluesky",
      "platformUserId": "did:plc:abc123xyz",
      "platformUsername": "mybrand.bsky.social",
      "platformAvatar": "https://cdn.bsky.app/avatar.jpg",
      "active": true,
      "createdAt": "2025-01-10T08:00:00Z"
    },
    {
      "id": "sac_k8m3n7x2pqhj",
      "profileId": "prf_h7k2m9xp4qnj",
      "platform": "twitter",
      "platformUserId": "123456789",
      "platformUsername": "mybrand",
      "platformAvatar": "https://pbs.twimg.com/profile.jpg",
      "active": true,
      "createdAt": "2025-01-11T09:00:00Z"
    }
  ],
  "limits": {
    "current": 2,
    "max": 5,
    "canAdd": true
  }
}
{
  "error": "Unauthorized"
}
{
  "error": "Profile not found"
}