> ## Documentation Index
> Fetch the complete documentation index at: https://allhandsai-docs-qa-changes-use-case.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Alive

> Basic liveness check - returns OK if the server process is running.



## OpenAPI

````yaml /openapi/agent-sdk.json get /alive
openapi: 3.1.0
info:
  title: OpenHands Agent Server
  description: OpenHands Agent Server - REST/WebSocket interface for OpenHands AI Agent
  version: 0.1.0
servers: []
security: []
paths:
  /alive:
    get:
      tags:
        - Server Details
      summary: Alive
      description: Basic liveness check - returns OK if the server process is running.
      operationId: alive_alive_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````