Skip to main content
GET
/
v1
/
account
List the accounts the authenticated user can access
curl --request GET \
  --url https://app.variable.global/api/v1/account \
  --header 'Authorization: Bearer <token>'
[
  {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "Acme, Inc.",
    "mcpEnabled": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.variable.global/llms.txt

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

This endpoint is only available with OAuth or session authentication. Scoped API keys (api_xxx) are bound to a single account, so this route rejects them with a 401.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of accounts

uuid
string<uuid>
required
name
string
required
Example:

"Acme, Inc."

mcpEnabled
boolean
required

Whether MCP is enabled for the account.