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

# List Executions

> List all executions for the organization with optional filtering



## OpenAPI

````yaml https://control-plane.kubiya.ai/api/openapi.json get /api/v1/executions
openapi: 3.1.0
info:
  title: Agent Control Plane API
  description: Multi-tenant agent orchestration with Temporal workflows
  version: 1.0.0
servers: []
security:
  - BearerAuth: []
tags:
  - name: health
    description: 🏥 **Health & Status** - Check API health and availability
  - name: authentication
    description: 🔐 **Authentication** - Token validation and auth management
  - name: agents
    description: 🤖 **Agents** - Create and manage AI agents with custom capabilities
  - name: skills
    description: 🛠️ **Tool Sets** - Manage agent skills and tool configurations
  - name: integrations
    description: 🔌 **Integrations** - Connect to external services (Kubiya managed)
  - name: custom-integrations
    description: >-
      ⚙️ **Custom Integrations** - User-defined integration instances with env
      vars, secrets, and files
  - name: integration-templates
    description: >-
      📦 **Integration Templates** - Pre-configured templates for common
      services (PostgreSQL, Redis, MongoDB, etc.)
  - name: secrets
    description: 🔑 **Secrets** - Secure credential storage and retrieval
  - name: teams
    description: 👥 **Teams** - Team management and collaboration
  - name: workflows
    description: 📊 **Workflows** - Multi-step automation and orchestration
  - name: executions
    description: ▶️ **Executions** - Track and monitor workflow runs
  - name: jobs
    description: ⏰ **Jobs** - Scheduled and webhook-triggered tasks
  - name: policies
    description: 🛡️ **Policies** - Access control and security policies
  - name: analytics
    description: 📈 **Analytics** - Usage metrics and performance monitoring
  - name: projects
    description: 📁 **Projects** - Project organization and management
  - name: environments
    description: 🌍 **Environments** - Environment configuration (dev, staging, prod)
  - name: models
    description: 🧠 **Models** - LLM model configuration and management
  - name: runtimes
    description: ⚡ **Runtimes** - Agent execution runtime environments
  - name: workers
    description: 👷 **Workers** - Worker registration and heartbeat monitoring
  - name: storage
    description: 💾 **Storage** - File storage and cloud integration
  - name: context-graph
    description: 🕸️ **Context Graph** - Knowledge graph and context management
  - name: temporal-workflows
    description: >-
      ⚙️ **Temporal Workflows** - Background workflows for context graph
      ingestion, connector operations, and scheduled jobs
  - name: templates
    description: 📝 **Templates** - Reusable configuration templates
paths:
  /api/v1/executions:
    get:
      summary: List Executions
      description: List all executions for the organization with optional filtering
      operationId: list_executions_api_v1_executions_get
      parameters:
        - name: skip
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Skip
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 100
            title: Limit
        - name: status_filter
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status Filter
        - name: execution_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Execution Type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExecutionResponse'
                title: Response List Executions Api V1 Executions Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ExecutionResponse:
      properties:
        id:
          type: string
          title: Id
        organization_id:
          type: string
          title: Organization Id
        execution_type:
          type: string
          title: Execution Type
        entity_id:
          type: string
          title: Entity Id
        entity_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name
        prompt:
          type: string
          title: Prompt
        system_prompt:
          anyOf:
            - type: string
            - type: 'null'
          title: System Prompt
        status:
          type: string
          title: Status
        response:
          anyOf:
            - type: string
            - type: 'null'
          title: Response
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        usage:
          additionalProperties: true
          type: object
          title: Usage
        execution_metadata:
          additionalProperties: true
          type: object
          title: Execution Metadata
        runner_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Runner Name
        user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: User Id
        user_name:
          anyOf:
            - type: string
            - type: 'null'
          title: User Name
        user_email:
          anyOf:
            - type: string
            - type: 'null'
          title: User Email
        user_avatar:
          anyOf:
            - type: string
            - type: 'null'
          title: User Avatar
        created_at:
          type: string
          title: Created At
        started_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
        updated_at:
          type: string
          title: Updated At
        participants:
          items:
            $ref: '#/components/schemas/ParticipantResponse'
          type: array
          title: Participants
        last_message_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Message At
        last_message_preview:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Message Preview
      type: object
      required:
        - id
        - organization_id
        - execution_type
        - entity_id
        - entity_name
        - prompt
        - system_prompt
        - status
        - response
        - error_message
        - usage
        - execution_metadata
        - runner_name
        - user_id
        - user_name
        - user_email
        - user_avatar
        - created_at
        - started_at
        - completed_at
        - updated_at
      title: ExecutionResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ParticipantResponse:
      properties:
        id:
          type: string
          title: Id
        user_id:
          type: string
          title: User Id
        user_name:
          anyOf:
            - type: string
            - type: 'null'
          title: User Name
        user_email:
          anyOf:
            - type: string
            - type: 'null'
          title: User Email
        user_avatar:
          anyOf:
            - type: string
            - type: 'null'
          title: User Avatar
        role:
          type: string
          title: Role
        joined_at:
          type: string
          title: Joined At
        last_active_at:
          type: string
          title: Last Active At
      type: object
      required:
        - id
        - user_id
        - user_name
        - user_email
        - user_avatar
        - role
        - joined_at
        - last_active_at
      title: ParticipantResponse
      description: Participant in an execution
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your Kubiya API token (format: Bearer <token>)'

````