Coverage
Get Geocoverage
Coverage
Get Geocoverage
Get list of regions where Sardine is supported, separated by county and state regions
GET
/
geo-coverage
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/geo-coverage \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"countryCode": "<string>",
"isAllowedOnRamp": true,
"isAllowedNFT": true,
"isBasicKycRequired": [
"OnRamp"
],
"isSsnRequired": [
"OnRamp"
],
"name": "<string>",
"supportedDocuments": [
"passport"
],
"currencyCode": "<string>",
"otpMethod": "sms",
"paymentMethods": [
{
"name": "<string>",
"type": "card",
"subType": "credit",
"subTypes": "us_credit",
"isAllowedOnRamp": true,
"isAllowedNFT": true
}
],
"states": [
{
"code": "<string>",
"name": "<string>",
"isAllowedOnRamp": true,
"isAllowedNFT": true
}
],
"isPayrollSupported": true
}
]
}
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
The response is of type object
.
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/geo-coverage \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"countryCode": "<string>",
"isAllowedOnRamp": true,
"isAllowedNFT": true,
"isBasicKycRequired": [
"OnRamp"
],
"isSsnRequired": [
"OnRamp"
],
"name": "<string>",
"supportedDocuments": [
"passport"
],
"currencyCode": "<string>",
"otpMethod": "sms",
"paymentMethods": [
{
"name": "<string>",
"type": "card",
"subType": "credit",
"subTypes": "us_credit",
"isAllowedOnRamp": true,
"isAllowedNFT": true
}
],
"states": [
{
"code": "<string>",
"name": "<string>",
"isAllowedOnRamp": true,
"isAllowedNFT": true
}
],
"isPayrollSupported": true
}
]
}