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
Get Geocoverage
Get list of regions where Sardine is supported, separated by county and state regions
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
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
2 letter code representing a country
1
"US"
Indicates if Sardine Onramp supports this country
true
Indicates if Sardine NFT supports this country
true
KYC requirements are satisfied without needing a document proof
OnRamp
, OffRamp
, NFT
["OnRamp", "OffRamp"]
KYC requirements include SSN verification
OnRamp
, OffRamp
, NFT
["OnRamp", "OffRamp"]
Full country name
1
"United States"
Type of documents that are supported
passport
, drivers_license
, identity_card
[
"passport",
"drivers_license",
"identity_card"
]
Currency code for this country
1
"USD"
OTP method used for this country
sms
, email
"sms"
Supported payment method name
1
"credit"
Supported payment method type
card
, bank
"card"
Supported payment method subtype
credit
, debit
, ach
"credit"
Supported payment method subtypes
us_credit
, us_debit
, ach
, international_credit
, international_debit
["us_credit", "international_credit"]
Indicates if the payment method is support for Sardine Onramp
true
Indicates if the payment method is support for Sardine NFT
true
Supported state code
"US-CA"
Supported state full name
"California"
Indicates if the state is supported for Sardine OnRamp
true
Indicates if the state is supported for Sardine NFT
true
Indicates if this country is support for Sardine Payroll
false
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
}
]
}