API Reference
Get fiat currencies
API Reference
Get fiat currencies
List of fiat currencies supported by Sardine
GET
/
fiat-currencies
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
}
]
}
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
OK
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
Required range:
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
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
}
]
}
}