Need to manage API keys, view logs, or check usage?Open the Developer portal →

Retrieve the authenticated user

Returns the Circa user account that owns the API key making the request.

GET/public/me

Request

No parameters.

Response

200OK
{
  "id": "u_a13c2d44-…",
  "email": "dev@example.com",
  "firstname": "Ada",
  "lastname": "Lovelace",
  "recentTeam": "t_72f3-…"
}

Example

curl -s 'https://api.circa.ai/public/me' \
  -H 'x-api-key: circa_live_xxx' \
  -H 'x-team-id: TEAM_ID_FROM_OVERVIEW' \
  -H 'Circa-Version: 2026-05-11.obsidian'