cURL
curl --request GET \ --url https://api.sandbox.sardine.ai/v1/supported-tokens \ --header 'Authorization: Basic <encoded-value>'
{ "data": [ { "token": "<string>", "tokenName": "<string>", "network": "<string>", "decimals": 123, "chainId": 123, "tokenAddress": "<string>" } ] }
Fetch list of tokens supported.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
OK
The response is of type object.
object