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>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.clearpolicy.app/llms.txt

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

Authorizations

Authorization
string
header
required

OAuth 2.0 bearer token obtained via the client credentials flow 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