API Reference
Frontend API
- Configs
- Users
- GETGet Current User
- DELDelete Current User
- PATCHUpdate Current User
- GETGet User Passkeys
- POSTStart Passkey Append
- POSTFinish Passkey Append
- DELDelete User Passkey
- POSTRefresh Session
- POSTLogout User
- POSTCreate Identifier
- DELDelete Identifier
- PATCHUpdate Identifier
- POSTStart Identifier Verification
- POSTFinish Identifier Verification
- GET
- Auth
- CorbadoConnect
Backend API
- Users
- Challenges
- Identifiers
- AuthEvents
- PasskeyEvents
- PasskeyChallenges
- PasswordManagers
- ClientEnvs
- ProjectConfig
- ConnectTokens
- WebhookEndpoints
- Sessions
- Passkeys
Users
Get Current User
Gets current user
GET
/
v2
/
me
Copy
Ask AI
curl --request GET \
--url https://{projectId}.frontendapi.corbado.io/v2/me \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"id": "<string>",
"fullName": "<string>",
"identifiers": [
{
"id": "<string>",
"value": "<string>",
"type": "email",
"status": "<string>"
}
],
"socialAccounts": [
{
"providerType": "google",
"identifierValue": "<string>",
"avatarUrl": "<string>",
"fullName": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
tbd
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://{projectId}.frontendapi.corbado.io/v2/me \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"id": "<string>",
"fullName": "<string>",
"identifiers": [
{
"id": "<string>",
"value": "<string>",
"type": "email",
"status": "<string>"
}
],
"socialAccounts": [
{
"providerType": "google",
"identifierValue": "<string>",
"avatarUrl": "<string>",
"fullName": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.