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

# Initialize Application State

> Initializes the application state.



## OpenAPI

````yaml /api/swagger.json post /state
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /state:
    post:
      tags:
        - State
      summary: Initialize Application State
      description: Initializes the application state.
      responses:
        '200':
          description: OK
          content: {}
        '202':
          description: Initialization in progress
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '406':
          description: License key not set
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string

````