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

# Get Automation Run Status

> Get run state, executors, and execution edges

## Endpoint

```bash theme={null}
POST https://api.ugc.inc/automations/status
```

## Request Body

<ParamField body="runId" type="string" required>
  Run ID to inspect.
</ParamField>

## Response

<ResponseField name="data" type="{ run: AutomationRun; executors: ExecutorNode[]; edges: ExecutionEdge[] }">
  Run object plus expanded execution graph state.
</ResponseField>

## TypeScript

```typescript theme={null}
const res = await client.automations.getStatus({ runId: 'run_123' });
```
