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

# Check Gateway health

> Return a minimal health snapshot from the Phaseo Gateway.

Use this unauthenticated endpoint for a lightweight reachability check. For current incidents and incident history, use the [Phaseo status page](https://status.phaseo.app).

<Note>
  A successful health response does not prove that every provider or model route is available. Use the default `GET /v1/models` response to confirm current routability.
</Note>


## OpenAPI

````yaml GET /health
openapi: 3.0.3
info:
  title: Phaseo Gateway API
  description: >-
    A gateway API for accessing various AI models with OpenAI-compatible
    endpoints.
  version: 1.0.0
  contact:
    name: Phaseo
    url: https://phaseo.app
    email: danielbutler500@gmail.com
servers:
  - url: https://api.phaseo.app/v1
security:
  - BearerAuth: []
tags:
  - name: Gateway
    description: Core Phaseo Gateway operations.
paths:
  /health:
    get:
      tags:
        - Gateway
      summary: Health check
      description: Returns a minimal gateway health snapshot.
      operationId: getHealth
      responses:
        '200':
          description: Gateway health status
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
      security: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication

````