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

# Get Application State

> Retrieves the current application state.



## OpenAPI

````yaml /api/swagger.json get /state
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /state:
    get:
      tags:
        - State
      summary: Get Application State
      description: Retrieves the current application state.
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.getStateResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.getStateResponse:
      type: object
      properties:
        evm:
          $ref: '#/components/schemas/handlers.evmStateResponse'
        general:
          $ref: '#/components/schemas/handlers.generalStateResponse'
        solana:
          $ref: '#/components/schemas/handlers.solanaStateResponse'
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string
    handlers.evmStateResponse:
      type: object
      properties:
        polygon:
          $ref: '#/components/schemas/handlers.evmPolygonStateResponse'
    handlers.generalStateResponse:
      type: object
      properties:
        commit_hash:
          type: string
        instance_number:
          type: integer
        state:
          type: string
        username:
          type: string
        version:
          type: string
    handlers.solanaStateResponse:
      type: object
      properties:
        current_epoch:
          type: integer
        current_slot:
          type: integer
        enabled:
          type: boolean
        streamer:
          $ref: '#/components/schemas/handlers.solanaStreamerStateResponse'
    handlers.evmPolygonStateResponse:
      type: object
      properties:
        enabled:
          type: boolean
    handlers.solanaStreamerStateResponse:
      type: object
      properties:
        active_streams:
          type: integer
        updates:
          type: number

````