cURL
curl --request GET \ --url {protocol}://{domain}/oauth/tokeninfo \ --header 'Authorization: Bearer <token>'
{ "active": true, "scope": "<string>", "client_id": "<string>", "exp": 123, "sub": "<string>" }
Get information about the current access token
A valid request URL is required to generate request examples
OAuth2 authorization code flow with PKCE support. Supports scopes: read, write, mcp, integration, oauth
Token information
Was this page helpful?