Retrieves all profiles belonging to the authenticated user.
Profiles are returned in descending order by creation date (newest first). Each profile includes its basic information (id, name, avatarUrl, createdAt).
Documentation Index
Fetch the complete documentation index at: https://docs.discovr.media/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication.
/profiles, /auth/session-token,
/auth/session) accept a long-lived refresh token
(rt_<hex>)./pages/*, /profile/*) accept a
short-lived session JWT.SDK clients use two typed API accessors (identityApi() with the
refresh token vs sessionApi() with the session JWT) — see the SDK
DiscovrAuth helper.
Format: Authorization: Bearer {token}
List of profiles retrieved successfully
Array of profiles belonging to the authenticated user. Profiles are ordered by creation date (newest first).
[
{
"id": "profile_abc123xyz",
"name": "Sci-Fi Lover",
"avatarUrl": "https://example.com/avatar.jpg",
"createdAt": "2023-01-01T00:00:00.000Z"
},
{
"id": "profile_def456uvw",
"name": "Action Movie Fan",
"avatarUrl": "https://example.com/avatar2.jpg",
"createdAt": "2023-01-02T00:00:00.000Z"
}
]