cURL
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>" }
Get supported assets and tokens
native
erc20
spl
USDC
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"
{ "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==" }