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

# List Runtimes

> List runtimes with pagination

```python theme={null}
from gravixlayer import GravixLayer

client = GravixLayer()

page = client.runtime.list(limit=100, offset=0)
print(f"Total runtimes: {page.total}")

for rt in page.runtimes:
    print(rt.runtime_id, rt.status, rt.template)
```

## Parameters

| Parameter | Type    | Required | Description               |
| --------- | ------- | -------- | ------------------------- |
| `limit`   | integer | No       | Page size. Default: `100` |
| `offset`  | integer | No       | Page offset. Default: `0` |

## Response

| Field      | Type    | Description               |
| ---------- | ------- | ------------------------- |
| `runtimes` | list    | List of `Runtime` objects |
| `total`    | integer | Total number of runtimes  |
