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

# Get Workflow Run Output

### Description

This endpoint retrieves the output of a workflow run by providing the `run_id`.

### Parameters

* **run\_id** (required, query): The ID of the run for which the output is being retrieved.

### Responses

#### 200 OK

```json theme={null}


`{
  "id": "string",  // Run ID
  "workflow_version_id": "string",  // Workflow version ID
  "workflow_inputs": {  // Inputs provided to the workflow
    "input_text": "string",
    "input_image": "https://somestatic.png"
  },
  "workflow_id": "string",  // ID of the workflow
  "machine_id": "string",  // Machine used to run the workflow
  "origin": "manual | api | public-share",  // Origin of the workflow run
  "status": "not-started | running | uploading | success | failed",  // Current status
  "ended_at": "string",  // End timestamp
  "created_at": "string",  // Creation timestamp
  "started_at": "string"  // Start timestamp
}`
```

#### 400 Workflow Not Found

```json theme={null}

`{
  "code": "400",
  "message": "Workflow not found"
}`
```

#### 401 Invalid or Expired Token

```json theme={null}

`Invalid or expired token`

```

#### 500 Error Getting Output

```json theme={null}

`{
  "error": "string"  // Error message detailing why the output retrieval failed
}`
```
