API Reference
Get Fiat Currencies
API Reference
- POSTGet Client Token
- GETGet Trades
- POSTCreate Trade
- GETGet Quote
- POSTSend Identity information
- POSTAccept Identity documents
- GETGet Supported Tokens
- GETGet Enabled Tokens
- GETGet Payment Method information
- GETGet Order(s)
- GETGet Bank Account
- GETFetch KYC
- GETGet Customers
- POSTPost Customer Information
- POSTSend Bank Information
- GETGet Geocoverage
- GETGet 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>'
{
"response": {
"symbol": "USD",
"supportingCountries": [
"US"
],
"name": "US Dollar",
"paymentOptions": [
{
"name": "ACH",
"id": "1",
"processingTime": "Instant - 3 days",
"displayText": true,
"icon": "string",
"dailyLimit": 3000,
"maxAmount": 3000,
"minAmount": 50
}
],
"isAllowed": true,
"defaultAmount": 200,
"icon": "string"
}
}
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": "USD",
"supportingCountries": [
"US"
],
"name": "US Dollar",
"paymentOptions": [
{
"name": "ACH",
"id": "1",
"processingTime": "Instant - 3 days",
"displayText": true,
"icon": "string",
"dailyLimit": 3000,
"maxAmount": 3000,
"minAmount": 50
}
],
"isAllowed": true,
"defaultAmount": 200,
"icon": "string"
}
}