Read who you are signed in as

​

Returns the signed-in person and the organization they belong to. Both are null before they have created or joined one — that empty result is how the portal knows to show organization creation.

Responses

  • application/json
Request Example for get/v1/me
curl /v1/me \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "user": {
    "id": "01K2TZ7W9M0000000000000000",
    "name": "Sofia Martinez",
    "email": "sofia@sunriseclinics.com"
  },
  "organization": {
    "id": "01K2TZ44WQ0000000000000000",
    "name": "Sunrise Clinics",
    "slug": "sunrise-clinics",
    "created_at": "2026-09-24T21:09:12.172Z",
    "member_count": 3
  }
}