Μετάβαση στο περιεχόμενο
GET /v1/asset

One asset summarised across all its lending markets

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/lendingrates-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/lendingrates-api/v1/asset" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lendingrates-api/v1/asset", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lendingrates-api/v1/asset");
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/lendingrates-api/v1/asset",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "Cross-protocol summary for USDC: where it earns the most (best_supply) and costs the least to borrow (best_borrow), and the spread of rates across all its money markets above min_tvl. Live from DeFiLlama, lightly cached.",
        "asset": "USDC",
        "chains": [
            "Algorand",
            "Aptos",
            "Arbitrum",
            "Avalanche",
            "BSC",
            "Base",
            "Canto",
            "Cronos",
            "Echelon Initia",
            "Ethereum",
            "Etherlink",
            "Hyperliquid L1",
            "Ink",
            "Linea",
            "Mantle",
            "Monad",
            "OP Mainnet",
            "Polygon",
            "Solana",
            "Sonic",
            "Stellar",
            "Sui",
            "ZIGChain"
        ],
        "source": "DeFiLlama yields (pools + lendBorrow)",
        "min_tvl": 1000000,
        "projects": [
            "aave-v3",
            "arcadia-v2",
            "benqi-lending",
            "blend-pools-v2",
            "canto-lending",
            "compound-v3",
            "current",
            "dolomite",
            "echelon-market",
            "euler-v2",
            "exactly",
            "fluid-lending",
            "flux-finance",
            "folks-finance-lending",
            "folks-finance-xchain",
            "gearbox",
            "hyperlend-pooled",
            "kamino-lend",
            "moonwell-lending",
            "navi-lending",
            "neverland",
            "permapod",
            "save",
            "scallop-lend",
            "sparklend",
            "tectonic",
            "tydro",
            "venus-core-pool"
        ],
        "borrow_apy": {
            "avg": 9.065,
            "max": 139.7705,
            "min": 0.1961,
            "median": 5.1273
        },
        "supply_apy": {
            "avg": 6.1488,
            "max": 73.9907,
            "min": 0,
            "median": 3.577
        },
        "best_borrow": {
            "chain": "Avalanche",
            "project": "euler-v2",
            "borrow_apy": 0.1961,
            "supply_apy": 0.1765,
            "total_supply_usd": 7808198
        },
        "best_supply": {
            "chain": "Ethereum",
            "project": "euler-v2",
            "borrow_apy": 82.2119,
            "supply_apy": 73.9907,
            "total_supply_usd": 3741101
        },
        "market_count": 72,
        "total_borrowed_usd": 3549622430,
        "total_supplied_usd": 4140979342
    },
    "meta": {
        "timestamp": "2026-06-12T10:34:31.103Z",
        "request_id": "90ea9cc0-831c-4a01-9cb3-6c663c01c917"
    },
    "status": "ok",
    "message": "Asset lending summary retrieved successfully",
    "success": true
}