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

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
OK
response
object