Skip to main content
GET
/
api
/
assets
List or resolve supported assets
curl --request GET \
  --url https://api.walletsuite.io/api/assets \
  --header 'x-api-key: <api-key>'
{
  "ok": true,
  "code": "<string>",
  "message": "<string>",
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "type": "<string>",
      "decimals": 123,
      "logo": "<string>",
      "description": "<string>",
      "website": "<string>",
      "explorer": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key provided by WalletSuite team

Query Parameters

chain
string
default:ethereum

Blockchain identifier, default ethereum

stablecoinOnly
boolean
default:false

Only return stablecoins

symbol
string

Filter by token symbol (mutually exclusive with name)

name
string

Filter by token name (mutually exclusive with symbol)

limit
integer<int32>
default:10

Maximum results in resolve mode (1-10, default 10)

Response

200 - */*

OK

ok
boolean
required
code
string
required
message
string
required
data
object[]