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

# Get health status



## OpenAPI

````yaml /api/openapi.json get /health
openapi: 3.1.0
info:
  title: Radion REST API
  description: Official REST API for Radion prediction market intelligence layer.
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.radion.app
    description: Production
security:
  - {}
  - ApiKey: []
tags:
  - name: Health
    description: Check whether the REST API is up and running.
  - name: Authentication
    description: Inspect the currently authenticated API key.
  - name: Events
    description: Events metadata.
  - name: Markets
    description: Markets metadata.
  - name: Orderbook
    description: CLOB orderbook midpoint passthrough.
  - name: Search
    description: Fuzzy search across markets, topics, and profiles.
  - name: Stats
    description: Public platform stats and indexer backfill progress.
paths:
  /health:
    get:
      tags:
        - Health
      summary: Get health status
      operationId: get_health_status
      responses:
        '200':
          description: Service is healthy and ready to accept traffic.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthStatus'
components:
  schemas:
    HealthStatus:
      type: object
      required:
        - status
        - at
      properties:
        at:
          type: string
          example: '2026-05-20T12:00:00Z'
        status:
          type: string
          example: ok
      example:
        at: '2026-05-20T12:00:00Z'
        status: ok
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key

````