API Reference
Get Supported Tokens
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 Supported Tokens
Fetch list of tokens supported.
GET
/
supported-tokens
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/supported-tokens \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"network": "algorand",
"assetSymbol": "ALGO",
"assetName": "Algorand",
"chainId": null,
"tokenName": "Algorand",
"token": "ALGO",
"tokenAddress": ""
},
{
"network": "avalanche",
"assetSymbol": "AVAX",
"assetName": "Avalanche",
"chainId": null,
"tokenName": "Avalanche",
"token": "AVAX",
"tokenAddress": ""
},
{
"network": "bitcoin",
"assetSymbol": "BTC",
"assetName": "Bitcoin",
"chainId": null,
"tokenName": "Bitcoin",
"token": "BTC",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "COMP",
"assetName": "Compound",
"chainId": 1,
"tokenName": "Compound",
"token": "COMP",
"tokenAddress": "0xc00e94Cb662C3520282E6f5717214004A7f26888"
},
{
"network": "ethereum",
"assetSymbol": "DAI",
"assetName": "Dai",
"chainId": 1,
"tokenName": "Dai",
"token": "DAI",
"tokenAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F"
},
{
"network": "dogecoin",
"assetSymbol": "DOGE",
"assetName": "Dogecoin",
"chainId": 1,
"tokenName": "Dogecoin",
"token": "DOGE",
"tokenAddress": ""
},
{
"network": "polkadot",
"assetSymbol": "DOT",
"assetName": "Polkadot",
"chainId": null,
"tokenName": "Polkadot",
"token": "DOT",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "ENJ",
"assetName": "Enjin Coin",
"chainId": 1,
"tokenName": "Enjin Coin",
"token": "ENJ",
"tokenAddress": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"
},
{
"network": "eos",
"assetSymbol": "EOS",
"assetName": "EOS",
"chainId": null,
"tokenName": "EOS",
"token": "EOS",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "ETH",
"assetName": "Ethereum",
"chainId": 1,
"tokenName": "Ethereum",
"token": "ETH",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "GRT",
"assetName": "The Graph",
"chainId": 1,
"tokenName": "The Graph",
"token": "GRT",
"tokenAddress": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7"
},
{
"network": "ethereum",
"assetSymbol": "LINK",
"assetName": "Chainlink",
"chainId": 1,
"tokenName": "Chainlink",
"token": "LINK",
"tokenAddress": "0x514910771AF9Ca656af840dff83E8264EcF986CA"
},
{
"network": "ethereum",
"assetSymbol": "MKR",
"assetName": "Maker",
"chainId": null,
"tokenName": "Maker",
"token": "MKR",
"tokenAddress": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2"
},
{
"network": "ethereum",
"assetSymbol": "PAXG",
"assetName": "Pax Gold",
"chainId": null,
"tokenName": "Pax Gold",
"token": "PAXG",
"tokenAddress": "0x45804880De22913dAFE09f4980848ECE6EcbAf78"
},
{
"network": "ethereum",
"assetSymbol": "SAND",
"assetName": "The Sandbox",
"chainId": null,
"tokenName": "The Sandbox",
"token": "SAND",
"tokenAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0"
},
{
"network": "ethereum",
"assetSymbol": "UNI",
"assetName": "Uniswap",
"chainId": null,
"tokenName": "Uniswap",
"token": "UNI",
"tokenAddress": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984"
},
{
"network": "ethereum",
"assetSymbol": "USDC",
"assetName": "USD Coin",
"chainId": null,
"tokenName": "USD Coin",
"token": "USDC",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
},
{
"network": "ethereum",
"assetSymbol": "USDT",
"assetName": "Tether",
"chainId": null,
"tokenName": "Tether",
"token": "USDT",
"tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
},
{
"network": "stellar",
"assetSymbol": "XLM",
"assetName": "Stellar",
"chainId": null,
"tokenName": "Stellar",
"token": "XLM",
"tokenAddress": ""
},
{
"network": "ripple",
"assetSymbol": "XRP",
"assetName": "Ripple",
"chainId": null,
"tokenName": "Ripple",
"token": "XRP",
"tokenAddress": ""
},
{
"network": "hedera",
"assetSymbol": "HBAR",
"assetName": "Hedera",
"chainId": null,
"tokenName": "Hedera",
"token": "HBAR",
"tokenAddress": ""
}
]
}
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
Symbol of cryptocurrency
Full name of cryptocurrency
Name of network, token is available on
Number of decimal points that the crypto can have
chainID if network is EVM compatible
address if token is ERC-20
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/supported-tokens \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"network": "algorand",
"assetSymbol": "ALGO",
"assetName": "Algorand",
"chainId": null,
"tokenName": "Algorand",
"token": "ALGO",
"tokenAddress": ""
},
{
"network": "avalanche",
"assetSymbol": "AVAX",
"assetName": "Avalanche",
"chainId": null,
"tokenName": "Avalanche",
"token": "AVAX",
"tokenAddress": ""
},
{
"network": "bitcoin",
"assetSymbol": "BTC",
"assetName": "Bitcoin",
"chainId": null,
"tokenName": "Bitcoin",
"token": "BTC",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "COMP",
"assetName": "Compound",
"chainId": 1,
"tokenName": "Compound",
"token": "COMP",
"tokenAddress": "0xc00e94Cb662C3520282E6f5717214004A7f26888"
},
{
"network": "ethereum",
"assetSymbol": "DAI",
"assetName": "Dai",
"chainId": 1,
"tokenName": "Dai",
"token": "DAI",
"tokenAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F"
},
{
"network": "dogecoin",
"assetSymbol": "DOGE",
"assetName": "Dogecoin",
"chainId": 1,
"tokenName": "Dogecoin",
"token": "DOGE",
"tokenAddress": ""
},
{
"network": "polkadot",
"assetSymbol": "DOT",
"assetName": "Polkadot",
"chainId": null,
"tokenName": "Polkadot",
"token": "DOT",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "ENJ",
"assetName": "Enjin Coin",
"chainId": 1,
"tokenName": "Enjin Coin",
"token": "ENJ",
"tokenAddress": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"
},
{
"network": "eos",
"assetSymbol": "EOS",
"assetName": "EOS",
"chainId": null,
"tokenName": "EOS",
"token": "EOS",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "ETH",
"assetName": "Ethereum",
"chainId": 1,
"tokenName": "Ethereum",
"token": "ETH",
"tokenAddress": ""
},
{
"network": "ethereum",
"assetSymbol": "GRT",
"assetName": "The Graph",
"chainId": 1,
"tokenName": "The Graph",
"token": "GRT",
"tokenAddress": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7"
},
{
"network": "ethereum",
"assetSymbol": "LINK",
"assetName": "Chainlink",
"chainId": 1,
"tokenName": "Chainlink",
"token": "LINK",
"tokenAddress": "0x514910771AF9Ca656af840dff83E8264EcF986CA"
},
{
"network": "ethereum",
"assetSymbol": "MKR",
"assetName": "Maker",
"chainId": null,
"tokenName": "Maker",
"token": "MKR",
"tokenAddress": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2"
},
{
"network": "ethereum",
"assetSymbol": "PAXG",
"assetName": "Pax Gold",
"chainId": null,
"tokenName": "Pax Gold",
"token": "PAXG",
"tokenAddress": "0x45804880De22913dAFE09f4980848ECE6EcbAf78"
},
{
"network": "ethereum",
"assetSymbol": "SAND",
"assetName": "The Sandbox",
"chainId": null,
"tokenName": "The Sandbox",
"token": "SAND",
"tokenAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0"
},
{
"network": "ethereum",
"assetSymbol": "UNI",
"assetName": "Uniswap",
"chainId": null,
"tokenName": "Uniswap",
"token": "UNI",
"tokenAddress": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984"
},
{
"network": "ethereum",
"assetSymbol": "USDC",
"assetName": "USD Coin",
"chainId": null,
"tokenName": "USD Coin",
"token": "USDC",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
},
{
"network": "ethereum",
"assetSymbol": "USDT",
"assetName": "Tether",
"chainId": null,
"tokenName": "Tether",
"token": "USDT",
"tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
},
{
"network": "stellar",
"assetSymbol": "XLM",
"assetName": "Stellar",
"chainId": null,
"tokenName": "Stellar",
"token": "XLM",
"tokenAddress": ""
},
{
"network": "ripple",
"assetSymbol": "XRP",
"assetName": "Ripple",
"chainId": null,
"tokenName": "Ripple",
"token": "XRP",
"tokenAddress": ""
},
{
"network": "hedera",
"assetSymbol": "HBAR",
"assetName": "Hedera",
"chainId": null,
"tokenName": "Hedera",
"token": "HBAR",
"tokenAddress": ""
}
]
}