---
title: "List wallet transactions"
method: GET
path: "/v1/wallets/{id}/transactions"
tags: ["Wallets"]
---

# List wallet transactions

`GET /v1/wallets/{id}/transactions`

Retrieve all transactions of an existing wallet.

## Path parameters

- `id` string, required

## Query parameters

- `take` number, nullable
- `skip` number, nullable

## Response `200`

Paginated list of wallet transactions

- PaginatedWalletTransaction
  - `meta` object, required
    - `total` number, required — Total of existing items.
    - `taken` number, required — Number of items returned.
    - `skipped` number, required — Number of items skipped.
  - `data` WalletTransaction[], required — List of WalletTransaction.
    - `id` string, required — Wallet transaction ID.
    - `type` 'credit_free' | 'credit_paid' | 'debit', required — Wallet transaction type.
    - `amount` number, required — Amount of the wallet transaction.
    - `comment` string, nullable, required — Internal comment stored on the wallet transaction.
    - `invoice_id` string, nullable, required — Generated invoice ID for the transaction. Only applies for `credit_paid` and `debit`.
    - `original_transaction_id` string, nullable, required — The ID of the original wallet transaction that was reverted by this transaction.
    - `reverted_by` string, nullable, required — The ID of the wallet transaction that reverted this transaction.
    - `created_at` string, date-time, required — UTC date time string in the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.

---

[API](https://skmtc.dev/hyperline/apis/hyperline-api.md) · [All operations](https://skmtc.dev/hyperline/apis/hyperline-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hyperline/hyperline-api/revisions/19fa5f22e39b/schema)
