Skip to main content
GET
/
v1
/
users
/
me
Get the current user
curl --request GET \
  --url https://api.folk.app/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "usr_bc984b3f-0386-434d-82d7-a91eb6badd71",
    "fullName": "John Doe",
    "email": "john.doe@example.com"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.folk.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key for authentication

Response

The current user associated with the API key.

data
object
required

The current workspace user.

Example:
{
"id": "usr_bc984b3f-0386-434d-82d7-a91eb6badd71",
"fullName": "John Doe",
"email": "john.doe@example.com"
}
deprecations
string[]
Example:
["This field is deprecated"]