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

# List transactions

`GET /fund/transactions`

You can use the `fund_id` in the response as the “parent” to query `GET /movements?parent_link_id=[fund_id]` to view a trail of all movements related to this fund event.

## Query parameters

- `participant_code` string
- `fund_asset` string
- `deposit_address` string
- `fund_id` string
- `page` string
- `page_size` string
- `success` string
- `deposit_timestamp_gte` number
- `deposit_timestamp_gt` number
- `deposit_timestamp_lt` number
- `deposit_timestamp_lte` number
- `deposit_intent_id` string
- `reference_id` string

## Headers

- `X-SCX-SIGNED` string, required
- `X-SCX-TIMESTAMP` string, required

## Response `200`

Successfully retrieved paginated list of fund transactions with optional filters: participant_code, fund_asset, deposit_address, fund_id, success, deposit_timestamp_*, deposit_intent_id, reference_id.

- GetFundTransactionsResponse
  - `message` GetFundTransactionsEntity[]
    - `participant_code` string — The participant code tied to the deposit
    - `fund_asset` string — The currency in which the instrument's price is quoted
    - `deposited_asset` string — The currency that was actually deposited
    - `rate` string — The rate utilised for the conversion
    - `quoted_currency` string — Denominated currency for the conversion
    - `source_address` string — Wallet address that originated the deposit
    - `deposit_address` string — Wallet address used for the asset deposit
    - `quantity` string — Quantity of the deposit
    - `notional` string — Notional of the conversion
    - `fund_id` string — The zerohash-generated unique identifier for the fund event
    - `fund_timestamp` number — The timestamp of the conversion of `fund_asset` to `quoted_currency` in utc
    - `deposit_timestamp` number — The timestamp of the confirmation of the deposit in utc
    - `transaction_id` string — The on-chain transaction id associated with the deposit
    - `account_label` string — The account label associated with the account that originally received the deposit and ultimately settled into after the trade settlement
    - `success` boolean — The status of the fund [true/false]
    - `is_first_deposit` boolean — Indicates whether this was the participant's first fund deposit (used for first-deposit fee treatment).
    - `status_reason` string — The reason for the status of the fund. null if success is true
    - `status_reason_code` string — Machine-readable code for the status reason. Used for programmatic handling of failure scenarios
    - `reference_id` string — The Platform-generated unique identifier for the fund event
    - `raw_fee_bps` string — Initial fee rate expressed in basis points
    - `raw_fee_notional` string — Actual fee amount calculated directly from the raw_fee_bps
    - `deposit_fee_bps` string — Effective fee rate in basis points that was actually applied after minimum floors were considered
    - `deposit_fee_notional` string — Final fee amount that will actually be charged to the participant
    - `source` object — The source of the auth transaction. This field is optional and will only be present if you have Auth Embedded enabled
      - `type` 'CUSTODIAL' | 'NON_CUSTODIAL' | 'MANUAL' — The type of the source
      - `integration` string — The used integration
    - `deposit_fee_type` 'flat' | 'tiered' — The fee model applied to this transaction
    - `fee_tier_breakdown` object[] — Breakdown of how the fee was calculated across tiers
      - `tier` number — The tier number (1-based)
      - `amount_in_tier` string — The deposit amount that fell into this tier
      - `fee_bps` string — The fee rate in basis points applied for this tier
      - `fee_amount` string — The fee amount calculated for this tier
  - `page` number
  - `page_size` number
  - `total_pages` number

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error
- `503` — Service Unavailable

---

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