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

# List Transactions

`GET /transactions`

Retrieve an ordered and paginated list of **Transactions**. Note: `created_before` and `created_after` range can not be greater than 31 days

## Query parameters

- `limit` integer
- `offset` integer
- `account_id` string
- `item_id` string
- `transaction_type` 'payment' | 'refund' | 'disbursement' | 'fee' | 'deposit' | 'withdrawal'
- `transaction_type_method` 'credit_card' | 'npp' | 'bpay' | 'wallet_account_transfer' | 'wire_transfer' | 'misc'
- `direction` 'debit' | 'credit'
- `user_id` string
- `created_before` string
- `created_after` string

## Response `200`

OK

- Transactions
  - `transactions` Transaction[]
    - `id` string
    - `reference_id` string
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `description` string
    - `payee_name` string
    - `type` string
    - `type_method` string
    - `state` string
    - `user_id` string
    - `user_name` string
    - `item_name` string
    - `dynamic_descriptor` string
    - `account_id` string
    - `account_type` string
    - `amount` string
    - `currency` string
    - `debit_credit` string
    - `marketplace` object
      - `group_name` string
      - `name` string
      - `short_name` string
      - `uuid` string, uuid
    - `related` object
      - `transactions` object[]
        - `id` string
        - `account_id` string
        - `account_type` string
        - `user_id` string
        - `user_name` string
        - `item_name` string
    - `payee_details` object — payee details. only filled for specific payment types (fast payments - npp)
      - `debtor_name` string
      - `debtor_legal_name` string
      - `debtor_bsb` string
      - `debtor_account` string
      - `clearing_system_transaction_id` string
      - `remittance_information` string
      - `pay_id` string
      - `pay_id_type` string
      - `end_to_end_id` string
      - `npp_payin_internal_id` string
    - `links` object
      - `self` string
      - `users` string
      - `fees` string
      - `wallet_accounts` string
      - `card_accounts` string
      - `paypal_accounts` string
      - `bank_accounts` string
      - `items` string
      - `marketplaces` string
      - `npp_payin_transaction_detail` string
      - `supplementary_data` string
  - `meta` object
    - `limit` integer
    - `offset` integer
    - `total` integer
  - `links` object
    - `self` string

---

[API](https://skmtc.net/hellozai/apis/assembly-api.md) · [All operations](https://skmtc.net/hellozai/apis/assembly-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hellozai/assembly-api/revisions/60b528b2e015/schema)
