> ## 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.

# Get Execution

> Retrieve a single execution by ID with full detail.



## OpenAPI

````yaml https://api.selcor.ai/v1/openapi.json get /v1/relay/executions/{id}
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/{id}:
    get:
      tags:
        - Relay Executions
      summary: Get Execution
      description: Retrieve a single execution by ID with full detail.
      parameters:
        - schema:
            type: string
            example: exec_abc123
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Execution details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/ExecutionDetail'
                  request_id:
                    type: string
                required:
                  - data
                  - request_id
      security:
        - bearerAuth: []
components:
  schemas:
    ExecutionDetail:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        tier:
          type: string
        platform:
          type: string
        credential:
          type: string
        instruction:
          type: string
        result:
          nullable: true
        error_code:
          type: string
          nullable: true
        error_message:
          type: string
          nullable: true
        error_detail:
          nullable: true
        turns:
          type: number
          nullable: true
        duration_ms:
          type: number
          nullable: true
        screenshots:
          nullable: true
        created_at:
          type: string
        completed_at:
          type: string
          nullable: true
      required:
        - id
        - status
        - tier
        - platform
        - credential
        - instruction
        - error_code
        - error_message
        - turns
        - duration_ms
        - created_at
        - completed_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API key in format: sk_live_...'

````