v1

latestOpenAPI 3.0.32026-07-2485236250.4 KB
Cards/Delivery

Get delivery methods

Retrieves list of courier providers that can deliver the card to the specified country</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/delivery/methods/{country}

Path parameters

countrystring required

Country where the card should be delivered (ISO 3166-1 alpha-2)

Response

OK

currencystring required

Fiat currency in which the fees are processed

feenumber required

Price in fiat currency that should be paid for the delivery

providerstring required

Courier provider that will deliver the card

typestring

Shipping type offered by the courier provider (e.g. Express, Standard)

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"
      }
    ],
    "fee": 100.06,
    "provider": "DHL",
    "type": "Express"
  }
]