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

# Readiness Check

> Readiness check endpoint. Confirms the API is ready to accept traffic and all dependencies are available. No authentication required.

<Info>
  This endpoint does **not** require authentication. Use it for orchestration systems and deployment health gates.
</Info>

## Response

<ResponseField name="status" type="string">
  Readiness status. Returns `ready` when the API and its dependencies are operational.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.quintai.dev/ready
  ```

  ```python Python theme={null}
  import requests

  response = requests.get("https://api.quintai.dev/ready")
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "ready"
  }
  ```
</ResponseExample>
