Cards API
  1. Information
Cards API
  • Introduction
  • API Usage Instructions
  • Platform URL's
  • API Specification
  • Authentication
  • Steps to Generate a Secure Signature
  • Callback Parameters and Template
  • Merchant
    • Information
      GET
    • Program Details
      GET
  • Cards
    • KYC Requirements
    • Apply Card
      • Apply
      • Binding
    • Information
      • CardDetails
        GET
      • PinDetails
        GET
      • CardBalance
        GET
      • Single Card Transactions
        POST
      • All Cards Transactions
        POST
      • Countries
        GET
      • Towns
        GET
    • Top Up
      • Estimate Card TopUp Fee
      • TopUp
      • TopUp Status
    • Actions
      • Freeze
      • UnFreeze
      • Cancellation
      • SetPin
  • Webhooks
    • Callback notification
    • Kycstatus result callback notification
    • Createcard result callback notification
    • Recharge callback notification
    • Operation callback notification
    • Consume result callback notification
    • Fee callback notification
    • Refund callback notification
    • Bank card 3DS verification
  1. Information

Single Card Transactions

POST
Card/Transactions
CardsService
This API retrieves a list of transactions for a specific card within a given time range. The response includes transaction details such as amount, currency, fees, type, status, and remarks.

Request

Header Params
Content-Type
string 
optional
Default:
application/json
Authorization
string 
optional
Default:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Body Params application/json
cardId
string  | null 
optional
page
integer <int32>
optional
size
integer <int32>
optional
startTime
string <date-time>
optional
endTime
string <date-time>
optional
Example
{
    "cardId": "19d1f3e2-2ecf-45d3-a796-4f5a2d557f5d",
    "page": 1,
    "size": 10,
    "startTime": "2025-02-18T11:48:13.997Z",
    "endTime": "2025-02-18T11:48:13.997Z"
}

Responses

🟢200OK
text/plain
Success
Body
array of:
taskId
string  | null 
optional
cardId
string  | null 
optional
currency
string  | null 
optional
amount
number <double> | null 
optional
settlemetAmount
number <double> | null 
optional
fee
number <double> | null 
optional
type
string  | null 
optional
date
string <date-time>
optional
status
string  | null 
optional
remarks
string  | null 
optional
Example
[
    {
        "taskId": "TXN123456",
        "cardId": "123456",
        "currency": "USD",
        "amount": 50,
        "settlemetAmount": 49,
        "fee": 1,
        "type": "purchase",
        "date": "2025-02-18T11:48:13.998Z",
        "status": "completed",
        "remarks": "Amazon purchase"
    }
]
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
🔴501501
Modified at 2025-02-18 12:02:40
Previous
CardBalance
Next
All Cards Transactions
Built with