GET
/
v2
/
me
Retrieve current user
curl --request GET \
  --url https://{projectId}.frontendapi.corbado.io/v2/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "fullName": "<string>",
  "identifiers": [
    {
      "id": "<string>",
      "value": "<string>",
      "type": "email",
      "status": "<string>"
    }
  ],
  "socialAccounts": [
    {
      "providerType": "google",
      "identifierValue": "<string>",
      "avatarUrl": "<string>",
      "fullName": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

After a user logs in successfully, a session is created and a JWT token is returned. This token represents the user's authenticated session. It must be included in the Authorization header as a Bearer token for all protected endpoints:

Authorization: Bearer <your-token>

The server will validate this token to authorize access.

Response

200 - application/json

tbd

The response is of type object.