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

# List Executions

> Returns a paginated list of relay executions with optional filters.



## OpenAPI

````yaml https://api.selcor.ai/v1/openapi.json get /v1/relay/executions
openapi: 3.1.0
info:
  title: Selcor Partner API
  version: 0.1.0
  description: API for managing workspaces, locations, voice agents, and relay executions.
servers:
  - url: https://api.selcor.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/relay/executions:
    get:
      tags:
        - Relay Executions
      summary: List Executions
      description: Returns a paginated list of relay executions with optional filters.
      parameters:
        - schema:
            type: number
            minimum: 1
            maximum: 100
            default: 25
            example: 25
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
        - schema:
            type: string
            example: completed
          required: false
          name: status
          in: query
        - schema:
            type: string
            example: dentrix
          required: false
          name: platform
          in: query
        - schema:
            type: string
            example: read
          required: false
          name: tier
          in: query
      responses:
        '200':
          description: List of executions
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ExecutionSummary'
                  pagination:
                    type: object
                    properties:
                      has_more:
                        type: boolean
                      next_cursor:
                        type: string
                    required:
                      - has_more
                  request_id:
                    type: string
                required:
                  - data
                  - pagination
                  - request_id
      security:
        - bearerAuth: []
components:
  schemas:
    ExecutionSummary:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        tier:
          type: string
        platform:
          type: string
        instruction:
          type: string
        turns:
          type: number
          nullable: true
        duration_ms:
          type: number
          nullable: true
        created_at:
          type: string
      required:
        - id
        - status
        - tier
        - platform
        - instruction
        - turns
        - duration_ms
        - created_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API key in format: sk_live_...'

````