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

# GET /health

> Plain-text liveness probe.

Free, no payment required.  Used by uptime monitors.

## Request

```bash theme={null}
curl https://x402.aegis-kyt.com/health
```

## Response

```
ok
```

`Content-Type: text/plain`.  HTTP `200` on success.

That's it.  Identical to the [BlockSec x402 health probe](https://x402.blocksec.ai/health)
on purpose — any UptimeRobot-class monitor configured against their
endpoint will work against ours without reconfiguration.


## OpenAPI

````yaml GET /health
openapi: 3.1.0
info:
  description: >-
    Public, subscription-billed AML API. Send `Authorization: Bearer aeg_<key>`
    on every call.  See the user kabinet at
    https://app.aegis-kyt.com/account?tab=api to generate a key.
  title: Aegis Public API
  version: 2.0.0
servers:
  - description: Production
    url: https://api.aegis-kyt.com/v2
security: []
paths:
  /health:
    get:
      tags:
        - v2-public
      summary: Liveness probe
      operationId: health_health_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                title: Response Health Health Get
                type: object
          description: Successful Response

````