Skip to content

Introspection

GET /v1/me

Returns the user, organization, and token metadata behind the current connection. The simplest way to confirm a token is valid and see what it resolves to. The API sees exactly what this user can see, evaluated live on every request.

Terminal window
curl https://api.mereon.ai/v1/me \
-H "Authorization: Bearer $MEREON_TOKEN"
{
"user": {
"id": "usr_8s2k...",
"name": "Alex Doe",
"email": "[email protected]"
},
"organization": {
"id": "org_3a1p...",
"name": "Acme Inc"
},
"token": {
"name": "Claude on my laptop",
"tokenPrefix": "mrn_8s2k",
"scopes": ["read"],
"expiresAt": "2026-09-15T00:00:00.000Z"
}
}
FieldTypeNotes
user.idstringThe connected user’s id.
user.namestringDisplay name.
user.emailstring | nullEmail, when available.
organization.idstringThe organization the token is pinned to.
organization.namestringOrganization display name.
token.namestringThe name you gave the token at creation.
token.tokenPrefixstringThe first characters of the token, for identification.
token.scopesstring[]Always ["read"] today.
token.expiresAtstring | nullISO 8601 expiry, or null if non-expiring.