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:ibtc",
      "chain": "arbitrum",
      "icon": "<string>",
      "htlc": {
        "address": "<string>",
        "schema": "evm:htlc"
      },
      "token": {
        "address": "<string>",
        "schema": "evm:htlc"
      },
      "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:
arbitrum:ibtc,
arbitrum:usdc,
arbitrum:wbtc,
base:cbbtc,
bera:lbtc,
base:usdc,
bitcoin:btc,
botanix:btc,
corn:btcn,
ethereum:cbbtc,
ethereum:wbtc,
ethereum:ibtc,
ethereum:seed,
ethereum:usdc,
hyperevm:ubtc,
solana:sol,
starknet:wbtc,
unichain:usdc,
unichain:wbtc

Response

200 - application/json

List of assets.

The response is of type object.