GET
/
enabled-tokens
curl --request GET \
  --url https://api.sandbox.sardine.ai/v1/enabled-tokens \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "token": "<string>",
      "tokenName": "<string>",
      "network": "<string>",
      "decimals": 123,
      "chainId": 123,
      "tokenAddress": "<string>"
    }
  ]
}

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