Skip to main content
GET
/
assets
Get all the supported assets on the given chain.
curl --request GET \
  --url https://{environment}.garden.finance/v2/assets \
  --header 'garden-app-id: <api-key>'
{
  "status": "Ok",
  "error": "<string>",
  "result": [
    {
      "id": "arbitrum:wbtc",
      "name": "Wrapped Bitcoin:WBTC",
      "chain": "evm:42161",
      "icon": "<string>",
      "htlc": {
        "address": "<string>",
        "schema": "evm:htlc_erc20"
      },
      "token": {
        "address": "<string>",
        "schema": "evm:erc20"
      },
      "decimals": 8,
      "min_amount": "<string>",
      "max_amount": "<string>",
      "price": 1
    }
  ]
}
Retrieve a list of all assets supported across different blockchain networks, including symbols, addresses, and decimals.

Authorizations

garden-app-id
string
header
required

If you do not yet have an app ID, please follow these steps.

Query Parameters

from

(Optional) Asset filter. Mainnet

Available options:
arbitrum:wbtc,
ethereum:wbtc,
arbitrum:ibtc,
base:cbbtc,
bitcoin:btc,
bnbchain:btcb,
botanix:btc,
citrea:cbtc,
ethereum:cbbtc,
ethereum:usdt,
hyperevm:ubtc,
litecoin:ltc,
monad:mon,
monad:usdc,
solana:cbbtc,
solana:sol,
solana:usdc,
starknet:wbtc,
tron:usdt

Response

200 - application/json

List of assets.

status
enum<string>
Available options:
Ok,
Error
error
string | null
result
Asset Information · object[]