/v1/market
One market's full state by id
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/morpho-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/morpho-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/morpho-api/v1/market");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/morpho-api/v1/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"chain": "Ethereum",
"source": "Morpho",
"lltv_pct": 86,
"market_id": "0x64d65c9a2d91c36d56fbc42d69e979335320169b3df63bf92789e2c8883fcc64",
"borrow_usd": 236193723.31,
"loan_asset": "USDC",
"supply_usd": 264332554.24,
"borrow_apy_pct": 4.1387,
"supply_apy_pct": 3.6901,
"utilization_pct": 89.3548,
"collateral_asset": "cbBTC",
"loan_asset_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"net_borrow_apy_pct": 4.1387,
"net_supply_apy_pct": 3.6901,
"collateral_asset_address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf"
},
"meta": {
"timestamp": "2026-06-10T22:58:07.458Z",
"request_id": "9875b87c-f1ac-4fe2-b70a-f52d7c5eb3bd"
},
"status": "ok",
"message": "Market retrieved successfully",
"success": true
}