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

# GET List scenario long runs

> List the latest active twin quickstart run for each saved scenario

```bash theme={null}
GET /scenarios/long-runs
```

Returns the most recent non-terminal twin quickstart run associated with each of your saved scenarios. Use this to rehydrate scenario cards with their active twin provisioning state after a reload or relogin, since the response includes the same URLs, lock state, seed results, and error information as [GET Get twin provision status](/api-reference/get-get-twin-provision-status).

Runs whose status is `completed`, `failed`, `cancelled`, or `expired` are excluded. Only one entry is returned per scenario (the most recently created active run).

**Response**

Array of objects with the following fields:

| Field         | Type             | Description                                                                                                                                                                                                                                                                   |
| ------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `scenario_id` | `string`         | Saved scenario id this run belongs to.                                                                                                                                                                                                                                        |
| `run`         | `object`         | Twin provision status payload for the active run. Same shape as [GET Get twin provision status](/api-reference/get-get-twin-provision-status), including `run_id`, `status`, `expires_at`, `twins`, `dashboard_url`, `proxy_token`, `error`, `seed_results`, and `is_public`. |
| `updated_at`  | `string \| null` | ISO 8601 timestamp of the last run update.                                                                                                                                                                                                                                    |
