2025-03-25
  • 2025-03-25
  • 2025-01-20
  • 2022-03-14
Help Center
VCCHUB How-to
2025-03-25
  • 2025-03-25
  • 2025-01-20
  • 2022-03-14
  1. Card
  • Guides
    • Welcome
    • Interface
  • API Reference
    • Introduction
    • Endpoints
    • Data Types
    • Signing
    • 3-D Secure Verification
    • Subscription
    • Errors
    • Webhooks
    • Items Information
    • Changelog
    • Acquiring
      • Create a direct payment
        POST
      • Create a APM payment
        POST
      • Create a redirect (iFrame) payment
        POST
      • Query a transaction
        POST
      • Capture a transaction
        POST
      • Review a transaction
        POST
      • Cancel a transaction
        POST
      • Cancel a subscription
        POST
      • Refund a transaction
        POST
      • Search a refund transaction
        POST
      • Create a payout
        POST
      • Optimise payment methods
        POST
    • Issuing
      • Cardholder
        • Create cardholder
        • Delete cardholder
        • Query cardholder
      • Group
        • Create group
        • Query group details
        • Delete group
        • Group Card Withdrawal
        • Update group status
        • Recharge group
        • Query rule
      • Card
        • Create a card
          POST
        • Query card details
          POST
        • Query card transaction
          POST
        • Cancel a card
          POST
        • Withdraw from a card
          POST
        • Update card status
          POST
        • Recharge card
          POST
        • Update shared card limit
          POST
        • Query for card operation
          POST
        • Query card BIN
          POST
  • Appendix
    • Test Cards
    • Bank Code
    • Country Code
    • Currency Code
    • Payment Methods
  1. Card

Query card transaction

POST
https://sandbox.vcc.top/api/card/transaction
Query transactions of a card

Request

Body Params application/json

Example
 {
    "card_id": "1952640796553510913",
    "start_date":"",
    "end_date": "",
    "page_number": "1",
    "page_size": "100",
    "company_id": "{{companyId}}",
    "sign": "{{sign}}"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.vcc.top/api/card/transaction' \
--header 'Content-Type: application/json' \
--data-raw '{
    "card_id": "1952640796553510913",
    "start_date":"",
    "end_date": "",
    "page_number": "1",
    "page_size": "100",
    "company_id": "{{companyId}}",
    "sign": "{{sign}}"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "code": "0000",
    "message": "Success",
    "result": {
        "records": [
            {
                "fee": 0.01,
                "status": "1",
                "transaction_no": "1950848986256637952",
                "transaction_time": "2025-07-31T15:09:04.000+00:00",
                "transaction_type": "15",
                "currency": "USD",
                "amount": -0.9,
                "source_currency": "USD",
                "source_amount": -1,
                "description": "",
                "is_cross_border": "1"
            }
        ],
        "record_total": 1,
        "page_number": 1,
        "page_size": 100,
        "page_total": 1
    }
}
Previous
Query card details
Next
Cancel a card