Skip to main content
GET
/
api
/
v1
/
account
Get Account
curl --request GET \
  --url https://api.sequenzy.com/api/v1/account \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "user": {
    "id": "user_abc123"
  },
  "companies": [
    {
      "id": "company_abc123",
      "name": "Acme Inc"
    }
  ],
  "currentCompanyId": "company_abc123"
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

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

Get the current API context. User-scoped keys return the companies you can access and the selected company; company-scoped keys return that single company.

Request

curl "https://api.sequenzy.com/api/v1/account" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "user": {
    "id": "user_abc123"
  },
  "companies": [
    {
      "id": "company_abc123",
      "name": "Acme Inc"
    }
  ],
  "currentCompanyId": "company_abc123"
}