Skip to main content

Overview

View the transaction history of your account.

Transactions

cURL -X POST /card-api/v1/transactions
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
-d '{
"transaction_type_list": "[1,2,3]",
"transaction_currency_list": [USD,HKD],
"program_value_list": "[01,02]"
}'
ParameterDescriptionType
time_typeQuery time type (default: transaction time)
  • 1 : Transaction time
  • 2 : Settlement time
transaction_type_listTransaction type
  • 0 : Unknown
  • 1 : New account
  • 2 : Card order
  • 3 : Purchase
  • 4 : Refund
  • 5 : Top-up
  • 6 : Withdrawal
  • 7 : Balance inquiry
  • 8 : P2P transfer
  • 9 : Wallet transfer
  • 10 : Forex transaction
  • 11 : Exchange rate difference
  • 12 : Dispute
  • 13 : Chargeback
  • 14 : Fund adjustment
  • 15 : Exchange rate adjustment
  • 16 : Account maintenance
  • 17 : Reversal
  • 18 : Withholding
  • 19 : Account closure
  • 20 : Reward
  • 21 : Shipping
  • 22 : Expedited shipping
  • 23 : Location
  • 24 : Settlement
  • 25 : Fund consolidation
  • 26 : Interest
  • 27 : Cashback
  • 28 : Fee
  • 29 : Monthly fee
  • 30 : Annual fee
  • 31 : Fast fund
  • 32 : Payment reversal
  • 33 : Fund expiry
  • 34 : A2A credit
  • 35 : Late fee
  • 36 : DCC fee
  • 37 : A2A debit
transaction_id_listTransaction IDARRAY
transaction_currency_listTransaction currencyARRAY
program_value_listAccount card type listARRAY
{
"code": "200",
"msg": "Success",
"trace_id": "d182a07d5000474ebe0affcb92e08ab3",
"data": {
"data": [
{
"transaction_time": "2025-06-06 14:57:02",
"transaction_id": "1000001862113",
"card_number": "527375 **** 3744",
"transaction_type": 3,
"transaction_currency": "USD",
"transaction_amount": 1.22,
"billing_currency": "USD",
"billing_amount": 1.22,
"program_value": 5,
"program_cn_name": "USD",
"program_en_name": "USD Multi Card-XA"
}
],
"next_cursor": null,
"has_more": false
}
}