> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usetapp.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Account

> Retrieve your sender profile — status, webhook URL, and domain whitelist.

Returns the authenticated sender's profile. Useful to confirm your API key,
active status, and current webhook configuration.

### Header Parameters

<ParamField header="API-Key" type="string" required>
  Unique API key issued manually through Telegram.
</ParamField>

### Response

<ResponseField name="status" type="string">Response state (`success`).</ResponseField>

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">Sender profile id.</ResponseField>
  <ResponseField name="email" type="string">Account email.</ResponseField>
  <ResponseField name="first_name" type="string">First name.</ResponseField>
  <ResponseField name="last_name" type="string">Last name.</ResponseField>
  <ResponseField name="webhook_url" type="string">Configured webhook URL.</ResponseField>
  <ResponseField name="domain_whitelist" type="array">Allowed domains.</ResponseField>
  <ResponseField name="is_active" type="boolean">Whether the account can create orders.</ResponseField>
</ResponseField>

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
    "status": "success",
    "message": "Sender profile retrieved",
    "data": {
      "id": "e7c194a0-3c4c-48c4-8235-4ba7dc94fa40",
      "email": "you@example.com",
      "first_name": "Jane",
      "last_name": "Doe",
      "webhook_url": "https://your-app.com/hooks/rails",
      "domain_whitelist": ["https://your-app.com"],
      "is_active": true
    }
  }
  ```
</ResponseExample>
