Cue
API ReferenceProfiles

List profiles

Retrieve all profiles for your account.

GET
/profiles

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

group_id?string

Filter profiles by group ID

Response Body

application/json

application/json

curl -X GET "https://api.oncue.so/v1/profiles"
{
  "data": [
    {
      "id": "prf_h7k2m9xp4qnj",
      "userId": "usr_x9k4m2n7pqhj",
      "name": "My Brand",
      "groupId": null,
      "active": true,
      "createdAt": "2025-01-10T08:00:00Z",
      "updatedAt": "2025-01-10T08:00:00Z"
    }
  ]
}
{
  "error": "Unauthorized"
}