# List transactions for an account

Retrieves a paginated list of transactions associated with a specific account. Replaces the embedded transactions array in channel/collection responses for better scalability and pagination support.

Endpoint: GET /v1/collections/accounts/{account_id}/transactions
Version: 1.0.0
Security: Bearer

## Path parameters:

  - `account_id` (string, required)
    Unique identifier of the account
    Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"

## Query parameters:

  - `status` (string)
    Filter by transaction status
    Enum: "COMPLETED", "FAILED_KYT", "FAILED", "HOLD_KYT", "REFUNDED_KYT", "PROCESSING"

  - `since` (string)
    ISO 8601 timestamp — return transactions created after this time
    Example: "2025-06-17T12:00:00Z"

  - `until` (string)
    ISO 8601 timestamp — return transactions created before this time
    Example: "2025-06-17T12:00:00Z"

  - `page` (integer)
    Page number (starts at 1)
    Example: 1

  - `size` (integer)
    Page size (items per page)
    Example: 10

## Response 200 fields (application/json):

  - `data` (array)

  - `data.id` (string, required)
    Unique identifier for the transaction
    Example: "487ba009-56cf-4ad9-8b5c-045e27893e00"

  - `data.parent_id` (string, required)
    Identifier of the parent entity (collection link or channel) for this transaction
    Example: "e8d43598-107d-4694-9fb2-934e7484c3d4"

  - `data.account_id` (string, required)
    Identifier of the account associated with this transaction
    Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"

  - `data.settlement_id` (string,null)
    Identifier of the settlement associated with this transaction. Null if the transaction has not been included in a settlement yet.
    Example: "9f3e4d2c-1a5b-4c8e-9d7f-2e1a3b4c5d6e"

  - `data.payer` (object, required)
    Payer partner details

  - `data.payer.id` (string, required)
    Unique identifier for the payer partner
    Example: "0c5479ff-3772-4123-b2b7-e679e71eb570"

  - `data.payer.name` (string, required)
    Full name of the payer partner
    Example: "Nigerian Imports Ltd."

  - `data.payer.email` (string, required)
    Email address of the payer partner
    Example: "nigerian@imports.com"

  - `data.beneficiary` (object, required)
    Beneficiary partner details

  - `data.beneficiary.id` (string, required)
    Unique identifier of the beneficiary partner
    Example: "01467076-8bb0-41c1-ad54-5751dd4a9e80"

  - `data.beneficiary.name` (string, required)
    Full name of the beneficiary partner
    Example: "Hong Kong Exports Ltd."

  - `data.beneficiary.email` (string, required)
    Email address of the beneficiary partner
    Example: "hongkong@exports.com"

  - `data.payment_amount` (object, required)
    Payment amount and asset

  - `data.payment_amount.value` (string, required)
    Payment amount as a string to preserve precision
    Example: "50.00000000"

  - `data.payment_amount.asset` (string, required)
    Asset symbol of the payment
    Example: "USDT"

  - `data.account_equivalent` (object, required)
    Account equivalent amounts for payment, fee, and net (converted to account's native currency)

  - `data.account_equivalent.gross_amount` (object, required)

  - `data.account_equivalent.gross_amount.value` (string, required)
    Gross amount in account currency
    Example: "50.00"

  - `data.account_equivalent.gross_amount.currency` (string, required)
    Account currency code
    Example: "USD"

  - `data.account_equivalent.fee_amount` (object, required)

  - `data.account_equivalent.fee_amount.value` (string, required)
    Fee amount in account currency
    Example: "0.50"

  - `data.account_equivalent.fee_amount.currency` (string, required)
    Account currency code
    Example: "USD"

  - `data.account_equivalent.net_amount` (object, required)

  - `data.account_equivalent.net_amount.value` (string, required)
    Net amount in account currency
    Example: "49.50"

  - `data.account_equivalent.net_amount.currency` (string, required)
    Account currency code
    Example: "USD"

  - `data.market_rate` (object, required)
    Market rate reference for the transaction

  - `data.market_rate.base` (string)
    Base currency for the exchange rate
    Example: "USDT"

  - `data.market_rate.counter` (string)
    Counter currency for the exchange rate
    Example: "USD"

  - `data.market_rate.rate` (string)
    Exchange rate from base to counter currency
    Example: "1.00"

  - `data.exchange_rate` (object, required)
    Exchange rate applied on the transaction

  - `data.exchange_rate.base` (string)
    Base currency for the exchange rate
    Example: "USDT"

  - `data.exchange_rate.counter` (string)
    Counter currency for the exchange rate
    Example: "USD"

  - `data.exchange_rate.rate` (string)
    Exchange rate from base to counter currency
    Example: "0.99"

  - `data.source_payment_method` (object, required)
    Source payment method details for a transaction

  - `data.status` (string, required)
    Transaction status
    Enum: "COMPLETED", "FAILED_KYT", "FAILED", "HOLD_KYT", "REFUNDED_KYT", "PROCESSING"

  - `data.reason` (string,null)
    Reason for current status (if applicable)

  - `data.transaction_processed_date` (string, required)
    ISO 8601 timestamp of the transaction
    Example: "2025-06-17T12:20:00Z"

  - `data.date_created` (integer, required)
    Unix timestamp (milliseconds) when transaction was created
    Example: 1566203005000

  - `data.date_confirmed` (integer, required)
    Unix timestamp (milliseconds) when transaction was confirmed
    Example: 1566203005000

  - `page` (object)

  - `page.page` (integer)

  - `page.size` (integer)

  - `page.total_elements` (integer)

  - `page.total_pages` (integer)

## Response 400 fields (application/json):

  - `code` (string, required)
    Error code identifying the type of error

  - `reason` (string, required)
    Human-readable error message


