Skip to main content

private/fiat/fiat-deposit-history

POST 

/private/fiat/fiat-deposit-history

Retrieves paginated fiat deposit transaction history for the authenticated user.

Request

Body

required
    id int64required

    Request id (echoed in response)

    method stringrequired

    Must be "private/fiat/fiat-deposit-history"

    api_key stringrequired

    Your API key (only required for private REST)

    sig stringrequired

    HMAC-SHA256 signature in hex (only required for private REST)

    nonce int64required

    Current timestamp in milliseconds, e.g. "1771761038000".

    params objectrequired
    page int32required

    Page number (0-based)

    page_size int32required

    Number of items per page

    start_time int64

    Start time for filtering transactions, as a Unix timestamp in milliseconds. Required if end_time is provided.

    end_time int64

    End time for filtering transactions, as a Unix timestamp in milliseconds.

    payment_networks string

    Comma-separated list of payment networks to filter by

Success.
Schema
    id int64

    Echoed request id

    method string

    Method invoked

    code int32

    0 = success; non-zero indicates error (reason code).

    result object
    Present when code === 0. transaction_history_list, page, page_size, total.
    transaction_history_list object[]
  • Array [
  • id int64required

    Transaction ID.

    amount decimalrequired

    Transaction amount

    currency stringrequired

    Currency code

    fee_currency string

    Fee currency

    fee_amount decimal

    Transaction fee amount

    status stringrequired

    Transaction status (pending, completed, failed, cancelled)

    payment_network stringrequired

    Payment network identifier

    created_at int64required

    Transaction creation timestamp (ms).

    updated_at int64

    Transaction update timestamp (ms).

    completed_at int64

    Transaction completion timestamp (ms).

    fee decimal

    Transaction fee (alternate).

    vendor_transaction_id stringnullable

    Transaction identifier assigned by the upstream fiat vendor / payment service provider (PSP) that processed the deposit.

    sender objectnullable
    Sender or beneficiary in a fiat deposit/withdraw transaction.
    account_identifier_value string

    Account identifier value

    beneficiary objectnullable
    Sender or beneficiary in a fiat deposit/withdraw transaction.
    account_identifier_value string

    Account identifier value

  • ]
  • page int32

    Current page number

    page_size int32

    Number of items per page

    total int32

    Total number of transactions

    message string

    Present when code !== 0.

    original string

    Present when code !== 0.