Passo Developers
Api

Get the authenticated user

GET
/me

Returns the profile of the user the bearer token belongs to. 404 if the user is authenticated but has not created a profile row yet.

Authorization

oauthJwt
AuthorizationBearer <token>

A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.

In: header

Response Body

application/json

curl -X GET "https://example.com/me"
{  "id": "string",  "displayName": "string",  "avatarUrl": "string",  "createdAt": "string",  "updatedAt": "string"}