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 \
  --cookie mnemom_session=
{
  "user_id": "<string>",
  "email": "<string>",
  "agents": [
    {
      "id": "<string>",
      "agent_hash": "a1b2c3d4e5f6a7b8",
      "user_id": "<string>",
      "email": "<string>",
      "claimed_at": "2023-11-07T05:31:56Z",
      "last_seen": "2023-11-07T05:31:56Z",
      "public": true,
      "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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mnemom.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

mnemom_session
string
cookie
required

HttpOnly, Secure, SameSite=Lax cookie issued by /v1/auth/sign-in (or the SSO / email-callback flows). The value is an AES-256-GCM-encrypted blob of {access_token, refresh_token, issued_at, auth_method}. Browser clients include this automatically with credentials: "include".

Response

User profile

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