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

# Get Status

> Check dialer account provisioning status

Check whether your workspace has dialer trunk and SIP credentials set up (Gate T).

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

## Response

**Provisioned (trunk is set up):**

```json theme={null}
{
  "success": true,
  "data": {
    "provisioned": true,
    "tenant_id": "uuid",
    "status": "active",
    "auth_mode": "sip",
    "sip_username": "tenant-id",
    "credential_issued_at": "2026-09-24T10:00:00Z",
    "default_caller_id": "+919876543210",
    "projection_state": "...",
    "numbers_count": 3
  }
}
```

**Not provisioned (no trunk):**

```json theme={null}
{
  "success": true,
  "data": {
    "provisioned": false,
    "numbers_count": 0
  }
}
```

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/dialer/status \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const status = await client.dialer.status();
  console.log('Provisioned:', status.data.provisioned);
  ```

  ```python Python theme={null}
  status = client.dialer.status()
  print('Provisioned:', status['data']['provisioned'])
  ```
</RequestExample>
