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

# List Run Callbacks

> List and filter callbacks for runs with pagination and status filtering



## OpenAPI

````yaml v1/api/actions.json get /runs/callbacks
openapi: 3.1.0
info:
  title: ED Automation External API
  description: This is the External API documentation for ED Automation
  version: dev
servers:
  - url: https://api.edges.run/v1
security:
  - XApiKeyAuth: []
paths:
  /runs/callbacks:
    get:
      tags:
        - public / runs
      summary: Get run callbacks
      operationId: getRunCallbacks
      parameters:
        - schema:
            type: array
            items:
              type: string
              enum:
                - PENDING
                - RUNNING
                - FAILED
                - SUCCESS
            minItems: 1
            nullable: true
          in: query
          name: status
          required: false
        - schema:
            type: array
            items:
              type: string
              format: uuid
            minItems: 1
            nullable: true
          in: query
          name: run_uid
          required: false
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
          in: query
          name: limit
          required: false
        - schema:
            type: integer
            minimum: 0
            default: 0
          in: query
          name: offset
          required: false
        - schema:
            type: array
            items:
              type: string
              maxLength: 128
            default:
              - '-created_at'
            maxItems: 10
          examples:
            example1:
              value:
                - '-created_at, status'
            example2:
              value:
                - '-created_at'
                - status
            example3:
              value:
                - updated_at
          in: query
          name: sort
          required: false
          description: >-
            Sort by fields. Prefix with `-` for descending order. Default is
            ascending order.
      responses:
        '200':
          description: Returns the run callbacks
          content:
            application/json:
              schema:
                description: Returns the run callbacks
                type: array
                items:
                  type: object
                  properties:
                    uid:
                      type: string
                      format: uuid
                      description: Run callback UUID
                    parent_uid:
                      type: string
                      format: uuid
                      description: >-
                        Identifies the original run callback from which the
                        current callback originates. It is set when a callback
                        is created as part of a replay of a previous run
                        callback.
                      nullable: true
                    retry_count:
                      type: integer
                      description: Retry count
                      default: 0
                    created_at:
                      type: string
                      description: Created at
                    status:
                      type: string
                      enum:
                        - PENDING
                        - RUNNING
                        - FAILED
                        - SUCCESS
                      description: Callback status
                    callback_url:
                      type: string
                      description: Callback URL
                    http_status:
                      type: integer
                      description: HTTP status code of the callback
                    http_response:
                      type: object
                      additionalProperties: true
                      description: HTTP response of the callback
                    batch_uid:
                      type: string
                      format: uuid
                      description: Batch UUID
                    run_uid:
                      type: string
                      format: uuid
                      description: Run UUID
                    scheduled_run_uid:
                      type: string
                      format: uuid
                      description: >-
                        Scheduled run UUID if the callback is associated with a
                        scheduled run
                      nullable: true
                    error:
                      type: object
                      description: Error information if the callback failed
                      nullable: true
                      required:
                        - message
                      properties:
                        error_label:
                          type: string
                          description: A short label for the error
                        message:
                          type: string
                          description: Detailed error message
                        error_scope:
                          type: string
                          description: Scope of the error
                        status_code:
                          type: integer
                          description: HTTP status code associated with the error
                        params:
                          type: object
                          description: Parameters related to the error
                          additionalProperties: true
                        error_ref:
                          type: string
                          description: Unique reference for the error
                    workspace_uid:
                      type: string
                      format: uuid
                      description: Workspace UUID
                  additionalProperties: false
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
components:
  schemas:
    def-0:
      title: APIError
      description: >-
        Represents an error returned by the API. This schema defines the
        standard structure of error messages to ensure consistent error handling
        across the application.
      type: object
      properties:
        error_label:
          type: string
          nullable: true
        error_scope:
          type: string
          enum:
            - input
            - integ
            - param
            - config
          nullable: true
        error_ref:
          type: string
          nullable: true
          example: ERR-12345
        message:
          type: string
        status_code:
          type: integer
          nullable: true
        params:
          type: object
          additionalProperties:
            anyOf:
              - type: string
              - type: number
              - type: boolean
              - type: 'null'
              - type: array
                items:
                  type: string
          nullable: true
        data:
          type: object
          nullable: true
          additionalProperties: true
          description: Additional data about the error
      additionalProperties: false
  securitySchemes:
    XApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````