/v1/markets
All registered lending markets
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/umee-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/umee-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/umee-api/v1/markets");
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/umee-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "umee-1",
"count": 15,
"markets": [
{
"denom": "uumee",
"symbol": "UMEE",
"borrowed": 7092.949155,
"exponent": 6,
"reserved": 179062.676938,
"supplied": 275154520.098508,
"liquidity": 275147427.149354,
"borrow_apy": 0.098978,
"collateral": 182359511.302235,
"supply_apy": 2.0e-6,
"oracle_price": 8.22e-6,
"available_borrow": 275147427.149353,
"utoken_exchange_rate": 1.01040444,
"oracle_historic_price": 8.24e-6
},
{
"denom": "ibc/04CE51E6E02243E565AE676DD60336E48D455F8AAD0611FA0299A22FDAC448D6",
"symbol": "ETH",
"borrowed": 0.000157800857503802,
"exponent": 18,
"reserved": 0.7146396689185494,
"supplied": 4.4951080426321415,
"liquidity": 4.494950241774638,
"borrow_apy": 0.010003,
"collateral": 3.9534648880593397,
"supply_apy": 0,
"oracle_price": 1719.41252098,
"available_borrow": 4.494950241774638,
"utoken_exchange_rate": 1.12484623,
"oracle_historic_price": 1674.74315775
},
{
"denom": "ibc/09C1ACBE292A5DF3DEC77B56DB4B12813263178DD86CDB6AC754036E9578E7B4",
"symbol": "SOMM",
"borrowed": 10238.392104,
"exponent": 6,
"reserved": 466.400166,
"supplied": 10436.37286,
"liquidity": 197.980757,
"borrow_apy": 0.649919,
"collateral": 3130.845281,
"supply_apy": 0.490944,
"oracle_price": 0.00052059,
"available_borrow": 197.980756,
"utoken_exchange_rate": 1.19256846,
"oracle_historic_price": 0.00053617
},
{
"denom": "ibc/0B1D3A663E6D41C7B1CFC78DB41C829A3B8329D396B47737445AFF5E0E9DA125",
"symbol": "AKT",
"borrowed": 12.012901,
"exponent": 6,
"reserved": 4185.143142,
"supplied": 13029.622642,
"liquidity": 13017.609742,
"borrow_apy": 0.030061,
"collateral": 9180.378337,
"supply_apy": 2.1e-5,
"oracle_price": 0.83166006,
"available_borrow": 13017.609741,
"utoken_exchange_rate": 1.36978926,
"oracle_historic_price": 0.69166892
},
{
"denom": "ibc/153B97FE395140EAAA2D7CAC537AF1804AEC5F0595CBC5F1603094018D158C0C",
"symbol": "WBTC",
"borrowed": 0.11812524,
"exponent": 8,
…