cURL
curl --request GET \ --url https://api.sandbox.sardine.ai/v1/fiat-currencies \ --header 'Authorization: Basic <encoded-value>'
{ "data": { "symbol": "USD", "supportingCountries": [ "US" ], "name": "US Dollar", "paymentOptions": [ { "name": "ACH", "processingTime": "Instant - 3 days", "dailyLimit": 30000, "maxAmount": 30000, "minAmount": 5000 } ] } }
List of fiat currencies supported by Sardine
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
OK
Show child attributes
Symbol of currency
List of countries which support this currency
Name of currency
Name of payment method
Description of time taken for funds to settle
Amount of the currency that can be transacted in a day, in minor units i.e. cents if currency is US dollars
x >= 0
The maximum amount of the currency that can be passed in a transaction, in minor units i.e. cents if currency is US dollars
The minimum amount of the currency that will be supported, in minor units i.e. cents if currency is US dollars