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

# Get Run



## OpenAPI

````yaml GET /api/v1/runs/{id}/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/runs/{id}/:
    get:
      tags:
        - v1
      operationId: v1_runs_retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          description: A UUID string identifying this Pipeline run.
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Run'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Run:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        number:
          type: integer
          readOnly: true
          nullable: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        started_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        ended_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        duration_seconds:
          type: integer
          readOnly: true
          nullable: true
        status:
          allOf:
            - $ref: '#/components/schemas/PipelineRunStatusEnum'
          readOnly: true
        trigger:
          allOf:
            - $ref: '#/components/schemas/PipelineRunTrigger'
          readOnly: true
        full_sync:
          type: boolean
          readOnly: true
          nullable: true
        extra_config:
          readOnly: true
          nullable: true
        credit_charge_status:
          readOnly: true
          nullable: true
          oneOf:
            - $ref: '#/components/schemas/CreditChargeStatusEnum'
            - $ref: '#/components/schemas/NullEnum'
        el_cost_usd:
          type: number
          format: double
          readOnly: true
          nullable: true
          title: EL cost (USD)
        el_cost_metadata:
          readOnly: true
          nullable: true
        transformation_cost_usd:
          type: number
          format: double
          readOnly: true
          nullable: true
          title: Transformation cost (USD)
        transformation_cost_metadata:
          readOnly: true
          nullable: true
        triggered_by:
          type: integer
          readOnly: true
          description: User that triggered the run (Expandable)
        triggered_by_token:
          type: string
          readOnly: true
          description: API token that triggered the run (Expandable)
        source:
          type: string
          readOnly: true
          description: Source of the run (Expandable)
        destination:
          type: string
          readOnly: true
          description: Destination of the run (Expandable)
        transformation:
          type: string
          readOnly: true
          description: Transformation of the run (Expandable)
      required:
        - created_at
        - credit_charge_status
        - destination
        - duration_seconds
        - el_cost_metadata
        - el_cost_usd
        - ended_at
        - extra_config
        - full_sync
        - id
        - number
        - source
        - started_at
        - status
        - transformation
        - transformation_cost_metadata
        - transformation_cost_usd
        - trigger
        - triggered_by
        - triggered_by_token
        - updated_at
    PipelineRunStatusEnum:
      enum:
        - pending_events
        - queued
        - running
        - success
        - failed
        - cancelling
        - canceled
      type: string
      description: |-
        * `pending_events` - PENDING_EVENTS
        * `queued` - QUEUED
        * `running` - RUNNING
        * `success` - SUCCESS
        * `failed` - FAILED
        * `cancelling` - CANCELLING
        * `canceled` - CANCELED
    PipelineRunTrigger:
      type: object
      properties:
        type:
          type: string
          nullable: true
        cron_expression:
          type: string
          nullable: true
        cron_timezone:
          type: string
          nullable: true
        event_rule:
          type: string
          nullable: true
      required:
        - cron_expression
        - cron_timezone
        - event_rule
        - type
    CreditChargeStatusEnum:
      enum:
        - unsuccessful
        - charged
      type: string
      description: |-
        * `unsuccessful` - Unsuccessful
        * `charged` - Charged
    NullEnum:
      enum:
        - null
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````