Skip to main content
The /me endpoint returns details about the authenticated user and the organization associated with their access token. Use it to confirm that your token is valid and to identify which organization’s data the token provides access to.

Endpoint

GET https://api.clearpolicy.app/v1/me

Authentication

Required. Pass your OAuth bearer token in the Authorization header.

Parameters

This endpoint has no query parameters.

Example request

curl https://api.clearpolicy.app/v1/me \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Response fields

id
string
required
The ULID of the authenticated user.
name
string
required
The full name of the authenticated user.
email
string
required
The email address of the authenticated user.
current_organization_name
string
required
The name of the organization the access token is scoped to.

Example response

{
  "id": "01kg82xqfx6fvr046d15hnfmjv",
  "name": "John Doe",
  "email": "john.doe@example.com",
  "current_organization_name": "Acme Corp"
}
Last modified on April 12, 2026