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

# Get daemon status



## OpenAPI

````yaml openapi/arc-daemon-control-plane.openapi.yaml get /v1/status
openapi: 3.1.0
info:
  title: Arc Daemon Control Plane API
  version: 1.0.0
  license:
    name: Apache-2.0
    identifier: Apache-2.0
  description: >
    OpenAPI for `arc-daemon` control-plane routes implemented in
    `crates/arc-daemon/src/main.rs`

    and shared structs in `crates/arc-core/src/control.rs`.


    This API is separate from the `arc-gateway` control-plane implementation.
servers:
  - url: http://127.0.0.1:22100
security:
  - {}
paths:
  /v1/status:
    get:
      summary: Get daemon status
      operationId: getDaemonStatus
      responses:
        '200':
          description: Current generation and node ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DaemonStatusResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    DaemonStatusResponse:
      type: object
      required:
        - generation
        - node_id
      properties:
        generation:
          type: string
          format: uuid
        node_id:
          type: string
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string

````