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

# List Daemons

> List daemons



## OpenAPI

````yaml /openapi.json get /v1/daemons
openapi: 3.1.0
info:
  title: Charm Cloud Runner API
  description: AI Agent Execution Platform - DDD Architecture
  version: 2.0.0
servers: []
security: []
tags:
  - name: Execute
    description: Agent execution with SSE streaming
  - name: Agents
    description: Agent CRUD operations
  - name: Versions
    description: Version management
  - name: Runs
    description: Run lifecycle management
  - name: Threads
    description: Thread run history
  - name: Studio
    description: Studio dashboard analytics
  - name: Billing
    description: Payments and subscriptions
  - name: Daemons
    description: Long-running agent processes
  - name: Jobs
    description: Background jobs
  - name: Notifications
    description: User notifications
  - name: Users
    description: User management
  - name: Admin
    description: Admin dashboard
  - name: Internal
    description: Internal job triggers
paths:
  /v1/daemons:
    get:
      tags:
        - Daemons
      summary: List Daemons
      description: List daemons
      operationId: list_daemons_v1_daemons_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  additionalProperties: true
                  type: object
                title: Response List Daemons V1 Daemons Get

````