Introspection
Get the current connection
Section titled “Get the current connection”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.
Request
Section titled “Request”curl https://api.mereon.ai/v1/me \ -H "Authorization: Bearer $MEREON_TOKEN"Response
Section titled “Response”{ "user": { "id": "usr_8s2k...", "name": "Alex Doe", }, "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" }}Fields
Section titled “Fields”| Field | Type | Notes |
|---|---|---|
user.id | string | The connected user’s id. |
user.name | string | Display name. |
user.email | string | null | Email, when available. |
organization.id | string | The organization the token is pinned to. |
organization.name | string | Organization display name. |
token.name | string | The name you gave the token at creation. |
token.tokenPrefix | string | The first characters of the token, for identification. |
token.scopes | string[] | Always ["read"] today. |
token.expiresAt | string | null | ISO 8601 expiry, or null if non-expiring. |