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": "bitcoin:btc",
      "chain": "bitcoin",
      "icon": "<string>",
      "htlc": "<string>",
      "token": "<string>",
      "decimals": 8,
      "min_amount": "<string>",
      "max_amount": "<string>"
    }
  ]
}

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
Available options:
bitcoin:btc,
ethereum:cbbtc,
ethereum:wbtc,
ethereum:usdc,
ethereum:seed,
ethereum:ibtc,
arbitrum:wbtc,
arbitrum:usdc,
arbitrum:ibtc,
base:cbbtc,
base:usdc,
bera:lbtc,
starknet:wbtc,
hyperevm:ubtc,
corn:btcn,
unichain:wbtc,
unichain:usdc,
botanix:btc,
solana:sol

Response

200 - application/json

List of assets.

The response is of type object.