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

# List Activities

> List wallet transactions.

```text theme={null}
GET /v1/wallet/activities
```

List the wallet's top-up and credit history with cursor-based pagination — prepaid top-ups and credits (promotional, manual). Run charges are not included; see [`GET /v1/runs`](/docs/api/runs/list) for per-run costs.

## Headers

| Header           | Required | Description                                              |
| ---------------- | -------- | -------------------------------------------------------- |
| `Authorization`  | Yes      | `Bearer <api-key>`                                       |
| `x-workspace-id` | No       | Only needed with OAuth/JWT tokens without an org context |

## Query Parameters

| Parameter | Type   | Default | Description          |
| --------- | ------ | ------- | -------------------- |
| `limit`   | number | 25      | Maximum items (1–25) |
| `cursor`  | string | —       | Pagination cursor    |

## 200 OK

| Field               | Type                | Description                               |
| ------------------- | ------------------- | ----------------------------------------- |
| `items`             | array               | Activity items                            |
| `items[].id`        | string              | Activity ID                               |
| `items[].type`      | string \| undefined | Activity type (e.g. `"Top-Up"`)           |
| `items[].amount`    | number              | Amount in dollars (non-negative float)    |
| `items[].currency`  | string              | ISO currency code                         |
| `items[].expiredAt` | string \| undefined | When the activity expires (if applicable) |
| `items[].createdAt` | string \| undefined | When the activity was created             |
| `cursor`            | string \| null      | Next-page cursor. `null` if last page     |

```json theme={null}
{
  "items": [
    {
      "id": "act_01HXYZ...",
      "type": "Top-Up",
      "amount": 10,
      "currency": "USD",
      "createdAt": "2026-03-28T10:30:15.000Z"
    }
  ],
  "cursor": null
}
```

## 503 Service Unavailable

Returned when the wallet is not active.
