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

# List procedures

> Returns a paginated list of procedure executions, optionally filtered by conversation.



## OpenAPI

````yaml api-reference/openapi3.json get /procedures
openapi: 3.0.0
info:
  title: Operator API
  version: '2025-06-19'
  description: API for Operator
servers:
  - url: https://api.operator.xyz
security: []
paths:
  /procedures:
    get:
      tags:
        - Procedures
      summary: List procedures
      description: >-
        Returns a paginated list of procedure executions, optionally filtered by
        conversation.
      parameters:
        - name: Operator-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-06-19'
          description: The API version to use.
          example: '2025-06-19'
        - name: agent_id
          in: query
          required: false
          schema:
            type: string
            default: null
            description: Filter by agent ID
          description: Filter by agent ID
        - name: conversation_id
          in: query
          required: false
          schema:
            type: string
            default: null
            description: Filter by conversation ID
          description: Filter by conversation ID
        - name: created_at_gte
          in: query
          required: false
          schema:
            format: date-time
            type: string
            default: null
            description: Filter procedures created after this date.
          description: Filter procedures created after this date.
        - name: created_at_lt
          in: query
          required: false
          schema:
            format: date-time
            type: string
            default: null
            description: Filter procedures created before this date.
          description: Filter procedures created before this date.
        - name: cursor
          in: query
          required: false
          schema:
            type: string
            default: null
            description: >-
              Pagination cursor for retrieving the next page of results. Use the
              cursor value returned in the previous response to fetch subsequent
              pages.
          description: >-
            Pagination cursor for retrieving the next page of results. Use the
            cursor value returned in the previous response to fetch subsequent
            pages.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                properties:
                  page:
                    description: List of procedures
                    items:
                      $ref: '#/components/schemas/ListedProcedure'
                      title: listed.procedure
                    type: array
                  cursor:
                    type: string
                    default: null
                    description: Cursor for next page, if available
                required:
                  - page
                type: object
        '404':
          description: The requested resource was not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  data: {}
      security:
        - BearerAuth: []
components:
  schemas:
    ListedProcedure:
      properties:
        id:
          description: Unique identifier for the procedure
          type: string
        livemode:
          description: Whether the procedure was run in live mode
          type: boolean
        name:
          description: Name of the procedure
          type: string
        conversation_id:
          description: ID of the conversation this procedure was run for
          type: string
        agent_id:
          description: >-
            Version-specific identifier for the agent that ran this procedure,
            e.g. `pa_8qm9JBCiTe7@v0`
          type: string
        created_at:
          description: Timestamp when the procedure was created
          format: date-time
          type: string
        status:
          description: Current status of the procedure
          enum:
            - pending
            - running
            - success
            - failed
            - skipped
            - cancelled
          type: string
        output:
          additionalProperties: true
          type: object
          default: null
          description: Output data from the procedure
        error:
          type: string
          default: null
          description: Error message if the procedure failed
      required:
        - id
        - livemode
        - name
        - conversation_id
        - agent_id
        - created_at
        - status
      type: object
      description: ''
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````