Get a specific token basket for a specific network.
Token Baskets
Get a specific token basket for a specific network.
Returns a detailed specific basket on a single blockchain network, containing only tokens for that network.
GET
Get a specific token basket for a specific network.
Authorizations
Use the docs sandbox API key for authentication: hydric_docs_4N4ocuirsN8Sh
Path Parameters
The chain id of the network to get the basket from. This must be a supported network chain id.
Available options:
1, 143, 130, 999, 8453, 9745, 534352 Example:
143
The unique slug of the basket to get.
Available options:
usd-stablecoins, eth-pegged-tokens, btc-pegged-tokens, hype-pegged-tokens, monad-pegged-tokens, xau-stablecoins, eur-stablecoins Example:
"usd-stablecoins"
Response
The requested token basket.
The requested token basket.
Example:
{
"id": "usd-stablecoins",
"name": "USD Stablecoins",
"description": "A basket of the most liquid USD stablecoins in the ecosystem.",
"logoUrl": "https://cdn.jsdelivr.net/gh/hydric-org/token-baskets/assets/logos/usd-stablecoins.png",
"chainIds": [1, 143],
"addresses": [
{
"chainId": 1,
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7"
},
{ "chainId": 143, "address": "0x1234..." }
],
"tokens": [
{
"chainId": 1,
"address": "0x0000000000000000000000000000000000000000",
"decimals": 18,
"name": "Ether",
"symbol": "ETH",
"logoUrl": "https://logos.hydric.org/tokens/1/0x0000000000000000000000000000000000000000"
}
]
}