v1
latestOpenAPI 3.0.02026-07-2442138225.7 KBMarkets
Discovery
List all lending markets
Retrieve a paginated list of available lending markets across all supported integrations and networks. Each market represents a token that can be supplied or borrowed.
get/v1/markets
Query parameters
offsetnumber
Offset for pagination
limitnumber
Example:25
Maximum number of items to return
integrationIdstring
Example:aave-borrow
Filter by integration
network'ethereum' | 'ethereum-goerli' | 'ethereum-holesky' | 'ethereum-sepolia' | 'ethereum-hoodi' | 'arbitrum' | 'base' | 'base-sepolia' | 'gnosis' | 'optimism' | 'polygon' | 'polygon-amoy' | 'starknet' | 'zksync' | 'linea' | 'unichain' | 'monad-testnet' | 'monad' | 'robinhood' | 'robinhood-testnet' | 'avalanche-c' | 'avalanche-c-atomic' | 'avalanche-p' | 'binance' | 'celo' | 'fantom' | 'harmony' | 'moonriver' | 'okc' | 'viction' | 'core' | 'sonic' | 'plasma' | 'katana' | 'hyperevm' | 'tempo' | 'pharos' | 'agoric' | 'akash' | 'axelar' | 'band-protocol' | 'bitsong' | 'canto' | 'chihuahua' | 'comdex' | 'coreum' | 'cosmos' | 'crescent' | 'cronos' | 'cudos' | 'desmos' | 'dydx' | 'evmos' | 'fetch-ai' | 'gravity-bridge' | 'injective' | 'irisnet' | 'juno' | 'kava' | 'ki-network' | 'mars-protocol' | 'nym' | 'okex-chain' | 'onomy' | 'osmosis' | 'persistence' | 'quicksilver' | 'regen' | 'secret' | 'sentinel' | 'sommelier' | 'stafi' | 'stargaze' | 'stride' | 'teritori' | 'tgrade' | 'umee' | 'sei' | 'mantra' | 'celestia' | 'saga' | 'zetachain' | 'dymension' | 'humansai' | 'neutron' | 'polkadot' | 'kusama' | 'westend' | 'bittensor' | 'aptos' | 'binancebeacon' | 'cardano' | 'near' | 'solana' | 'solana-devnet' | 'stellar' | 'stellar-testnet' | 'sui' | 'tezos' | 'tron' | 'ton' | 'ton-testnet' | 'hyperliquid'
Example:ethereum
Filter by network
scope'enabled' | 'all'
Example:enabled
Whether to return only enabled markets for the project or all markets
Response
Paginated list of lending markets
Example response
{
"total": 150,
"limit": 100,
"items": [
{
"id": "aave-v3-ethereum-usdc",
"integrationId": "aave-borrow",
"network": "ethereum",
"type": "pool",
"poolAddress": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
"loanToken": {
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6
},
"collateralTokens": [
{
"token": {
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6
},
"priceUsd": "2800.00",
"maxLtv": "0.80",
"liquidationThreshold": "0.825",
"liquidationPenalty": "0.05",
"supplyRate": "0.02"
}
],
"borrowRate": "0.0567",
"totalSupply": "1234567.89",
"totalSupplyRaw": "1234567890000000",
"totalBorrow": "987654.321",
"totalBorrowRaw": "987654321000000",
"availableLiquidity": "246913.569",
"availableLiquidityRaw": "246913569000000",
"utilizationRate": "0.80",
"loanTokenPriceUsd": "1.00",
"isBorrowEnabled": true,
"supplyCollateralFeeBps": "50",
"feeWrapperAddress": "0x29ac0c53Eb4b19295875D3895Fb1514ffC8e1616",
"minLoan": "0.01"
}
]
}