Openapi
OIDC UserInfo endpoint
Returns information about the authenticated user (or app for client_credentials flow).
Returns information about the authenticated user (or app for client_credentials flow).
AuthorizationBearer <token>
OAuth2 for third-party developers. Supports two flows:
- Authorization Code + PKCE — for client-side and mobile apps
- Client Credentials — for server-to-server integrations
See the OAuth2 guide for details.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/api/v1/oauth/userinfo"{ "sub": "string", "email": "string", "name": "string", "client_id": "string"}{ "error": "invalid_token", "error_description": "string"}