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

# Liveness check



## OpenAPI

````yaml /openapi.yaml get /healthz
openapi: 3.1.0
info:
  title: Onstacks Backend API
  version: 0.1.0
  summary: >-
    Public API contract for workspace wallet, transfer, provider routing, API
    key, and webhook flows.
servers:
  - url: https://api.onstacks.io
security: []
tags:
  - name: Health
  - name: Workspace
  - name: Wallets
  - name: Transfers
  - name: Corridors
  - name: Providers
  - name: Quotes
paths:
  /healthz:
    get:
      tags:
        - Health
      summary: Liveness check
      responses:
        '200':
          description: Service is alive
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      required:
        - data
        - error
        - request_id
      properties:
        data:
          type: object
          required:
            - status
            - timestamp
          properties:
            status:
              type: string
            timestamp:
              type: string
              format: date-time
        error:
          type: 'null'
        request_id:
          type: string

````