API Reference
Get fiat currencies
API Reference
Get fiat currencies
List of fiat currencies supported by Sardine
GET
/
fiat-currencies
Copy
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/fiat-currencies \
--header 'Authorization: Basic <encoded-value>'
Copy
{
"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
Example:
"USD"
List of countries which support this currency
Name of currency
Example:
"US Dollar"
Name of payment method
Example:
"ACH"
Description of time taken for funds to settle
Example:
"Instant - 3 days"
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
Example:
30000
The maximum amount of the currency that can be passed in a transaction, in minor units i.e. cents if currency is US dollars
Example:
30000
The minimum amount of the currency that will be supported, in minor units i.e. cents if currency is US dollars
Example:
5000
Copy
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/fiat-currencies \
--header 'Authorization: Basic <encoded-value>'
Copy
{
"data": {
"symbol": "USD",
"supportingCountries": [
"US"
],
"name": "US Dollar",
"paymentOptions": [
{
"name": "ACH",
"processingTime": "Instant - 3 days",
"dailyLimit": 30000,
"maxAmount": 30000,
"minAmount": 5000
}
]
}
}