v1

latestOpenAPI 3.0.32026-07-2485236250.4 KB
Cards/Fees

Get order fees

Retrieves estimation of fees that should be paid for the card order</br> > Note: This method is applicable only if your account manager has advised you to incorporate card fee handling as part of your integration process.

get/api/v1/cards/{type}/fees/{country}

Path parameters

countrystring required

Country in which the card will be issued (ISO 3166-1 alpha-2)

type'Plastic' | 'Virtual' | 'Metal' required

Format of the card the fees should be calculated for

Response

OK

currencystring required

Fiat currency in which the fees are processed

order_feenumber required

Total amount of fees that should be paid for the card order

Example response

{
  "currency": "USD",
  "estimated_payment_amounts": [
    {
      "amount": 109.41123037,
      "fee_amount": 0.5,
      "fee_precise_amount": "500000000000000000",
      "precise_amount": "109411230370000000000",
      "rate": 1.09345623,
      "token_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "token_symbol": "USDC"
    }
  ],
  "order_fee": 100.06
}