---
title: "List Transactions"
method: GET
path: "/transactions"
tags: ["ledger"]
---

# List Transactions

`GET /transactions`

## List an Account Transactions
List Transactions from an Account.

## Query parameters

- `account` string, required

## Response `200`

OK

- Transaction[]
  - `id` string, uuid — The id of the transaction.
  - `from` string, required — The id of payer of the transaction. It can be any id you choose, if never used before, it will be created.
  - `to` string, required — The id of payee of the transaction. It can be any id you choose, if never used before, it will be created.
  - `date` string, date-time — The date the transaction was created.
  - `metadata` string[] — A list of metadata you can add to the transaction.
  - `currency` string, required
  - `amount` integer, required
  - `balance` integer — The Balance after the Transaction.

---

[API](https://skmtc.dev/hoophq/apis/sequence.md) · [All operations](https://skmtc.dev/hoophq/apis/sequence/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hoophq/sequence/revisions/b31e251374a1/schema)
