Skip to main content
GET
/
me
Get current user
curl --request GET \
  --url https://api.clearpolicy.app/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "jsmith@example.com",
  "current_organization_name": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token created in ClearPolicy API settings with the api:use scope.

Response

The authenticated user.

id
string
required

The ULID of the authenticated user.

name
string
required

The full name of the user.

email
string<email>
required

The email address of the user.

current_organization_name
string
required

The name of the organization the token belongs to.

Last modified on May 27, 2026