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
The response is of type object.
object