Skip to main content
GET
/
v1
/
metadata
/
assets
List Assets
curl --request GET \
  --url https://api.example.com/v1/metadata/assets \
  --header 'X-Access-Key: <x-access-key>' \
  --header 'X-Signature: <x-signature>' \
  --header 'X-Timestamp: <x-timestamp>'
{
  "assets": [
    {}
  ],
  "nextCursor": "<string>"
}

List Assets

Retrieve a list of supported assets and tokens across all chains.

Authentication

X-Access-Key
string
required
API access key
X-Signature
string
required
HMAC-SHA256 signature
X-Timestamp
string
required
ISO 8601 timestamp

Query Parameters

chainId
string
Filter by chain identifier
type
string
Filter by asset type (native, erc20, spl)
symbol
string
Filter by symbol (e.g., USDC)
limit
integer
default:"50"
Maximum number of assets to return
cursor
string
Pagination cursor

Response

assets
array
Array of asset configurations
nextCursor
string
Cursor for next page

Example

curl -X GET "https://api.axonvault.io/v1/metadata/assets?chainId=eip155:1&type=erc20" \
  -H "X-Access-Key: ak_live_abc123" \
  -H "X-Signature: sha256=..." \
  -H "X-Timestamp: 2024-01-15T10:30:00Z"
Response:
{
  "assets": [
    {
      "assetId": "eip155:1:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "chainId": "eip155:1",
      "contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "name": "USD Coin",
      "symbol": "USDC",
      "decimals": 6,
      "type": "erc20",
      "logoUrl": "https://assets.axonvault.io/tokens/usdc.png",
      "verified": true,
      "coingeckoId": "usd-coin"
    },
    {
      "assetId": "eip155:1:0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "chainId": "eip155:1",
      "contractAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "name": "Tether USD",
      "symbol": "USDT",
      "decimals": 6,
      "type": "erc20",
      "logoUrl": "https://assets.axonvault.io/tokens/usdt.png",
      "verified": true,
      "coingeckoId": "tether"
    },
    {
      "assetId": "eip155:1:0x6B175474E89094C44Da98b954EescdeCB5BE3830",
      "chainId": "eip155:1",
      "contractAddress": "0x6B175474E89094C44Da98b954EedscdeCB5BE3830",
      "name": "Dai Stablecoin",
      "symbol": "DAI",
      "decimals": 18,
      "type": "erc20",
      "logoUrl": "https://assets.axonvault.io/tokens/dai.png",
      "verified": true,
      "coingeckoId": "dai"
    }
  ],
  "nextCursor": "eyJsYXN0SWQiOiJkYWkifQ=="
}