v1
latestOpenAPI 3.0.02026-07-2442138225.7 KBMarkets
Discovery
Get a single market by ID
Retrieve details for a specific lending market. Useful for deep linking into a specific market (e.g., cbBTC/USDT on Morpho Blue).
get/v1/markets/{marketId}
Path parameters
marketIdstring required
Example:aave-v3-ethereum-usdc
Market identifier (e.g., aave-v3-ethereum-usdc or Morpho Blue bytes32 key)
Response
Market details
Example response
{
"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"
}