Coverage
Get Fiat Currencies
Coverage
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>'
{
"response": {
"symbol": "<string>",
"supportingCountries": [
"<string>"
],
"name": "<string>",
"paymentOptions": [
{
"name": "<string>",
"id": "<string>",
"processingTime": "<string>",
"displayText": true,
"icon": "<string>",
"dailyLimit": 123,
"maxAmount": 123,
"minAmount": 123,
"weeklyLImit": 123
}
]
}
}
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
3 letter symbol of fiat currency
2 letter ISO code for countries
Name of currency
Name of payment method
Amount of crypto that can be purchased daily
The maximum size of the transaction
The minimum size of transaction
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/fiat-currencies \
--header 'Authorization: Basic <encoded-value>'
{
"response": {
"symbol": "<string>",
"supportingCountries": [
"<string>"
],
"name": "<string>",
"paymentOptions": [
{
"name": "<string>",
"id": "<string>",
"processingTime": "<string>",
"displayText": true,
"icon": "<string>",
"dailyLimit": 123,
"maxAmount": 123,
"minAmount": 123,
"weeklyLImit": 123
}
]
}
}