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

# List actions

> List current, nonterminal actions available to the caller.

<Card title="Get your Darwin API key here" icon="key" horizontal href="https://darwin.so/settings?tab=developer">
  Create a key in Developer settings.
</Card>


## OpenAPI

````yaml openapi-v2.json GET /actions
openapi: 3.1.0
info:
  title: Darwin API
  version: 2.0.0
  description: >-
    Search for executable capabilities, then manage durable work through six
    explicit Action operations.
servers:
  - url: https://api.darwin.so/api/v2
security:
  - DeveloperBearer: []
paths:
  /actions:
    get:
      summary: List actions
      description: List the caller’s current nonterminal actions. Requires agent:write.
      operationId: list_actions
      parameters:
        - name: actingAiId
          in: query
          schema:
            type: string
            minLength: 1
            maxLength: 200
        - name: cursor
          in: query
          schema:
            type: string
            minLength: 1
            maxLength: 200
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 50
            default: 20
      responses:
        '200':
          description: A page of the caller’s current actions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActListResponse'
                example:
                  type: list
                  status: completed
                  actions: []
                  nextCursor: null
              example:
                type: list
                status: completed
                actions:
                  - actionId: action_01J9Y8M4Z7B9R6K2X3C5V1N0PQ
                    aiId: ai_01J9Y8K0D6S2H4F7P8T3W5Q1RM
                    title: Book the selected stay
                    intent: Reserve the exact stay selected from Search.
                    mode: buy
                    lifecycleStatus: ACTIVE
                    attentionState: clear
                    capabilityIds:
                      - capability_01J9Y8F3N2A6M7C4R5V0X1K8QP
                    createdAt: '2026-09-17T19:00:00.000Z'
                    updatedAt: '2026-09-17T19:01:00.000Z'
                    availableActions:
                      - status
                      - update
                      - stop
                nextCursor: null
        '400':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '503':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ActListResponse:
      title: Action list
      type: object
      additionalProperties: false
      required:
        - type
        - status
        - actions
        - nextCursor
      properties:
        type:
          type: string
          const: list
        status:
          type: string
          const: completed
        actions:
          type: array
          items:
            type: object
            additionalProperties: false
            required:
              - actionId
              - aiId
              - title
              - intent
              - mode
              - lifecycleStatus
              - attentionState
              - capabilityIds
              - createdAt
              - updatedAt
              - availableActions
            properties:
              actionId:
                type: string
                minLength: 1
                maxLength: 200
              aiId:
                type: string
                minLength: 1
                maxLength: 200
              title:
                type: string
              intent:
                type: string
              mode:
                type: string
                enum:
                  - buy
                  - sell
                  - chat
                  - auto
              lifecycleStatus:
                type: string
              attentionState:
                type: string
                enum:
                  - needs_attention
                  - clear
              capabilityIds:
                type: array
                items:
                  type: string
                  minLength: 1
                  maxLength: 200
              createdAt:
                type: string
                format: date-time
              updatedAt:
                type: string
                format: date-time
              availableActions:
                type: array
                items:
                  type: string
                  enum:
                    - status
                    - update
                    - approve
                    - stop
        nextCursor:
          type:
            - string
            - 'null'
    Error:
      type: object
      additionalProperties: true
      properties:
        error:
          type: string
        message:
          type: string
        fields:
          type: array
          items:
            type: object
            additionalProperties: true
  securitySchemes:
    DeveloperBearer:
      type: http
      scheme: bearer
      bearerFormat: Darwin API key or OAuth access token

````