Skip to content
API DocsDocs

Retrieving Payment Details

Fetch the full details of a card transaction by ID

2 min readUpdated Jul 25, 2025

The info endpoint returns full transaction details for a card payment — card mask, processed amounts, billing details, and more. Use it when you need more than just the status, such as reconciliation, customer support lookup, or displaying order history.

#Key Response Fields

FieldDescription
transactionIdUnique transaction identifier
requestIdYour original request ID (useful for reconciliation)
transactionStatusFinal status (SUCCEED, FAILED, etc.)
declineCodeDecline code if the transaction failed
cardMaskMasked card number (e.g. 411111******1111)
cardHolderCardholder name
orderCurrencyCurrency you requested
processedCurrencyCurrency the transaction settled in
orderAmountAmount you requested
processedAmountAmount actually processed (may differ if FX conversion occurred)
conversionRateExchange rate applied, if any

#When to Use vs Status Endpoint

EndpointUse When
GET /payments/card/status/{id}You only need the current status (lightweight)
GET /payments/card/info/{id}You need full transaction data (reconciliation, display, support)
Was this helpful?