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

# Get SIP Trunk Health

> Run a live health check on a SIP trunk

# Get SIP Trunk Health

Run a live health check on a SIP trunk and return the current status. Lightweight version of [Verify SIP Trunk](/api-reference/endpoints/verify-sip-trunk) — does not change the trunk's `is_verified` flag.

## Endpoint

```
GET /api/v1/sip-trunks/{trunk_id}/health
```

## Path parameters

<ParamField path="trunk_id" type="string" required>SIP trunk UUID.</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer talq_your_environment_token_here`
</ParamField>

## Examples

<RequestExample>
  ```bash theme={null}
  curl "https://app.talkover.ai/api/v1/sip-trunks/trunk-uuid-1/health" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "is_healthy": true,
      "response_time_ms": 142,
      "checked_at": "2024-01-15T14:35:00Z"
    }
  }
  ```
</ResponseExample>

### Unhealthy Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "is_healthy": false,
      "response_time_ms": 5000,
      "error": "Connection timeout",
      "checked_at": "2024-01-15T14:35:00Z"
    }
  }
  ```
</ResponseExample>

## Notes

* Use this endpoint for monitoring/alerting integrations.
* Frequent polling is fine — checks are cached for short windows.
