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

# Simple health check endpoint

> Returns a confirmation that the server is operational



## OpenAPI

````yaml /storage-proofs-api/openapi-storage-proof-api.json get /is-alive
openapi: 3.0.3
info:
  title: Storage Proofs API
  description: >-
    API for submitting and managing Storage Proofs API requests across various
    blockchain networks
  version: 1.0.0
servers:
  - url: https://api.herodotus.cloud
    description: Production Server
  - url: https://staging.api.herodotus.cloud
    description: Staging Server
security: []
tags:
  - name: The one you want
    description: Probably the route you're looking for
  - name: Basic Batch Query
    description: Batch Query routes
  - name: Health check
    description: Health check routes
  - name: Info
    description: Info routes
paths:
  /is-alive:
    get:
      tags:
        - Health check
      summary: Simple health check endpoint
      description: Returns a confirmation that the server is operational
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
                additionalProperties: false
      security: []

````