Documentation Index
Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt
Use this file to discover all available pages before exploring further.
Returns the full detail of a single card transaction by its ID. Requires an API key with access level 1 or higher.
Path parameters
Response
Unique transaction identifier (UUID).
Transaction timestamp (ISO-8601).
Type of card operation. Possible values: AUTHORIZATION, CLEARING, REFUND, REVERSAL.
Amount charged in the billing currency.
Billing currency code (e.g. USD).
Amount in the original transaction currency.
Original transaction currency code (e.g. EUR).
Exchange rate applied, rounded to 6 decimal places.
Card balance before the transaction.
Card balance after the transaction.
Transaction status. Possible values: SUCCESS, PENDING, FAILED.
Present when the transaction was declined. Contains response_code and description.
FX fee charged by the provider.
FX fee charged to the client.
ATM fee charged by the provider.
ATM fee charged to the client.
Deposit fee charged by the provider.
Deposit fee charged to the client.
curl -X GET "https://api.cryptomate.me/cards/transactions/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
-H "x-api-key: $CRYPTOMATE_API_KEY"
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"datetime": "2026-04-15T10:30:00",
"operation": "CLEARING",
"bill_amount": 100.00,
"bill_currency": "USD",
"transaction_amount": 85.50,
"transaction_currency": "EUR",
"exchange_rate": 1.169591,
"merchant_name": "Amazon.com",
"original_balance": 5000.00,
"new_balance": 4900.00,
"status": "SUCCESS",
"decline_reason": null,
"fee_fx_provider": 0.50,
"fee_fx_client": 0.75,
"fee_atm_provider": 0.00,
"fee_atm_client": 0.00,
"fee_deposit_provider": 0.00,
"fee_deposit_client": 0.00
}