Returns all profiles for the signed-in user, ordered by creation date (newest first). Each profile includes its ID, display name, avatar URL, and creation timestamp.
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}
Profiles returned successfully
List of profiles for the signed-in user.
Profiles for the signed-in user, 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"
}
]