Skip to main content
GET
/
api
/
v1
/
auth
/
me
Get Current User
curl --request GET \
  --url https://api.example.com/api/v1/auth/me
{
  "id": "...",
  "email": "you@company.com",
  "organization_id": "...",
  "organization": {
    "id": "...",
    "name": "Acme Corp"
  }
}
Returns the authenticated account and its associated organization.
{
  "id": "...",
  "email": "you@company.com",
  "organization_id": "...",
  "organization": {
    "id": "...",
    "name": "Acme Corp"
  }
}