> ## 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

> Simple health check endpoint



## OpenAPI

````yaml /data-structure-indexer-api/openapi-data-structure-indexer-api.json get /is-alive
openapi: 3.0.3
info:
  title: Data Structure Indexer API
  description: API for fetching data from the Data Structure Indexer
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://rs-indexer.api.herodotus.cloud
    description: Production server
  - url: https://staging.rs-indexer.api.herodotus.cloud
    description: Staging server
security: []
tags:
  - name: accumulators
    description: Accumulators endpoints.
  - name: remappers
    description: Remappers endpoints.
paths:
  /is-alive:
    get:
      tags:
        - Health Check
      summary: Simple health check endpoint
      description: Simple health check endpoint
      operationId: get_is_alive
      responses:
        '200':
          description: Get all accumulators
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IsAliveResponse'
components:
  schemas:
    IsAliveResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````