Skip to main content
GET
/
api
/
profile
Get User Profile
curl --request GET \  --url {protocol}://{domain}/api/profile \  --header 'Authorization: Bearer <token>'
{  "user": {  "id": "<string>",  "email": "jsmith@example.com",  "name": "<string>",  "picture": "<string>"  },  "client": {  "clientId": "<string>",  "name": "<string>"  },  "scopes": [  "<string>"  ] }

Authorizations

Authorization
string
header
required

OAuth2 authorization code flow with PKCE support. Supports scopes: read, write, mcp, integration, oauth

Response

200 - application/json

User profile data

user
object
client
object
scopes
string[]