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

# Get Run Status

<Note>
  `uid` is used for all the endpoints and Run manipulation.

  The `id` is an internal identifier returned to smooth and improve speed and accuracy if you have questions about your runs you will want
  to submit to the team.
</Note>

<Tip>
  Use this endpoint to poll for run status without fetching full run details. This is useful for lightweight status checks in your automation workflows.
</Tip>


## OpenAPI

````yaml v1/api/actions.json get /runs/{run_uid}/status
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/{run_uid}/status:
    get:
      tags:
        - public / runs
      summary: Get a run status by UUID
      operationId: getRunStatus
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: run_uid
          required: true
          description: Run UUID
      responses:
        '200':
          description: Returns the run status
          content:
            application/json:
              schema:
                description: Returns the run status
                type: object
                properties:
                  id:
                    type: integer
                    description: Run ID
                  uid:
                    type: string
                    format: uuid
                    description: Run UUID
                  status:
                    type: string
                    description: Run status
                    enum:
                      - CREATED
                      - INVALID
                      - QUEUED
                      - SCHEDULED
                      - BLOCKED
                      - STOPPED
                      - RUNNING
                      - FAILED
                      - PARTIAL_SUCCEEDED
                      - SUCCEEDED
                    nullable: true
                  postponed_until:
                    type: string
                    format: date-time
                    nullable: true
                    description: >-
                      If the run is postponed, this field indicates when it will
                      be retried.
                  started_at:
                    type: string
                    description: Started at
                    nullable: true
                  finished_at:
                    type: string
                    description: Finished at
                    nullable: true
                  created_at:
                    type: string
                    description: Created at
                  updated_at:
                    type: string
                    description: Updated at
                    nullable: true
                additionalProperties: false
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
        '422':
          description: Unprocessable Entity
          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

````