Assets
GET /assets
Returns the canonical token list for Ryze Protocol with addresses, decimals, oracle feed IDs, and logos.
bash
curl https://mainnet.api.ryze.pro/api/assetsResponse
json
{
"name": "Ryze Protocol List",
"timestamp": "2026-06-11T19:29:46.550Z",
"version": { "major": 1, "minor": 1, "patch": 0 },
"keywords": [],
"tokens": [
{
"chainId": 8453,
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18,
"isNative": true,
"logoURI": "https://token-icons.s3.amazonaws.com/eth.png",
"pythFeedId": "0x9d4294bbcd1174d6f2003ec365831e64cc31d9f6f15a2b85399db8d5000960f6",
"pythProId": 631
},
{
"chainId": 8453,
"address": "0x4200000000000000000000000000000000000006",
"name": "Wrapped Ether",
"symbol": "WETH",
"decimals": 18,
"logoURI": "https://ethereum-optimism.github.io/data/WETH/logo.png",
"pythFeedId": "0x9d4294bbcd1174d6f2003ec365831e64cc31d9f6f15a2b85399db8d5000960f6",
"pythProId": 631
},
{
"chainId": 8453,
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"name": "USD Coin",
"symbol": "USDC",
"decimals": 6,
"logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
"pythFeedId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a",
"pythProId": 7
},
{
"chainId": 8453,
"address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
"name": "Coinbase Wrapped BTC",
"symbol": "cbBTC",
"decimals": 8,
"logoURI": "https://assets.coingecko.com/coins/images/40143/standard/cbbtc.webp",
"pythFeedId": "0x2817d7bfe5c64b8ea956e9a26f573ef64e72e4d7891f2d6af9bcc93f7aff9a97",
"pythProId": 397
}
]
}Token Object
| Field | Type | Present | Description |
|---|---|---|---|
chainId | number | Always | Network chain ID |
address | string | ERC-20 only | Contract address |
name | string | Always | Human-readable name |
symbol | string | Always | Ticker symbol |
decimals | number | Always | Token precision |
isNative | boolean | Native token only | true for ETH |
logoURI | string | Always | CDN-hosted token logo URL |
pythFeedId | string | Always | Pyth Network price feed ID |
pythProId | number | Always | Pyth Pro (Lazer) feed ID |
Notes
- Native ETH has no
addressfield. Use WETH for on-chain operations. - The chain ID is
8453(Base mainnet) or84532(Base Sepolia) depending on network. pythFeedIdis used with Pyth Hermes for price data.