GET
/
geo-coverage
curl --request GET \
  --url https://api.sandbox.sardine.ai/v1/geo-coverage \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "countryCode": "US",
      "isAllowedOnRamp": true,
      "isAllowedNFT": true,
      "isBasicKycRequired": [
        "OnRamp",
        "OffRamp"
      ],
      "isSsnRequired": [
        "OnRamp",
        "OffRamp"
      ],
      "name": "United States",
      "supportedDocuments": [
        "passport",
        "drivers_license",
        "identity_card"
      ],
      "currencyCode": "USD",
      "otpMethod": "sms",
      "paymentMethods": [
        {
          "name": "credit",
          "type": "card",
          "subType": "credit",
          "subTypes": [
            "us_credit",
            "international_credit"
          ],
          "isAllowedOnRamp": true,
          "isAllowedNFT": true
        }
      ],
      "states": [
        {
          "code": "US-CA",
          "name": "California",
          "isAllowedOnRamp": true,
          "isAllowedNFT": true
        }
      ],
      "isPayrollSupported": false
    }
  ]
}

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
data
object[]