> ## 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 Account Info

> Returns account information for the authenticated API key

# 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.

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/subscribers/me" \
  -H "x-api-key: YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "success": true,
    "account": {
      "companyId": "company_abc123",
      "companyName": "Acme Inc"
    }
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "success": false,
    "error": "Invalid or missing API key"
  }
  ```

  ```json 403 Forbidden theme={null}
  {
    "success": false,
    "error": "Company not found"
  }
  ```
</ResponseExample>
