Skip to main content
GET
/
api
/
v1
/
subscribers
/
me
Get Account Info
curl --request GET \
  --url https://api.sequenzy.com/api/v1/subscribers/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "account": {
    "companyId": "company_abc123",
    "companyName": "Acme Inc"
  }
}

Get Account Info

Returns account information for the authenticated API key. This endpoint is primarily used for connection labels (e.g., Zapier integrations).

Request

No parameters required. Authentication is handled via the API key.
curl "https://api.sequenzy.com/api/v1/subscribers/me" \
  -H "x-api-key: YOUR_API_KEY"

Responses

{
  "success": true,
  "account": {
    "companyId": "company_abc123",
    "companyName": "Acme Inc"
  }
}