Skip to main content
GET
/
auth
/
me
Get authenticated user info and linked agents
curl --request GET \
  --url https://api.mnemom.ai/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "user_id": "<string>",
  "email": "<string>",
  "agents": [
    {
      "id": "<string>",
      "agent_hash": "<string>",
      "user_id": "<string>",
      "email": "<string>",
      "claimed_at": "2023-11-07T05:31:56Z",
      "last_seen": "2023-11-07T05:31:56Z",
      "status": "active",
      "public": true,
      "aip_enforcement_mode": "observe",
      "billing_account_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "billing_account_id": "<string>",
  "plan_id": "<string>",
  "org": {
    "org_id": "<string>",
    "org_name": "<string>",
    "role": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Response

User profile

user_id
string
email
string
agents
object[]
billing_account_id
string | null
plan_id
string | null
org
object