Skip to main content

Endpoint

POST https://api.ugc.inc/automations/list-runs

Request Body

templateId
string
required
Template ID.
limit
number
Maximum number of runs to return.

Response

data
Array<{ run: AutomationRun; nodeCount: number }>
Runs for the template.

TypeScript

const res = await client.automations.listRuns({ templateId: 'tpl_123', limit: 20 });