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

# Health Check

> GET /v0/health — Check API availability

Returns the current availability status of the API. No authentication required. Use this endpoint to verify connectivity or as a liveness probe in infrastructure health checks.

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.tokenrip.com/v0/health
  ```
</CodeGroup>

## Example response

```json theme={null}
{
  "ok": true,
  "data": {
    "status": "ok"
  }
}
```

## Response fields

| Field    | Type   | Description                                             |
| -------- | ------ | ------------------------------------------------------- |
| `status` | string | `"ok"` when the API is available and accepting requests |
