> ## 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 wallet transactions with cursor-based pagination.

## Headers

| Header           | Required | Description        |
| ---------------- | -------- | ------------------ |
| `Authorization`  | Yes      | `Bearer <api-key>` |
| `x-workspace-id` | Yes      | Workspace ID       |

## Query Parameters

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

## 200 OK

```json theme={null}
{
  "items": [
    {
      "id": "act_01HXYZ...",
      "type": "CHARGE",
      "amount": { "value": -0.003, "currency": "USD" },
      "description": "Run apify/apidojo/tweet-scraper",
      "createdAt": "2026-03-28T10:30:15.000Z"
    }
  ],
  "cursor": null
}
```
