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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "APY/utilisation are fractions shown as *_pct; LLTV is the liquidation loan-to-value in %.",
        "source": "Morpho GraphQL API (blue-api.morpho.org, live)",
        "service": "morpho-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/chains": "Chains Morpho runs on.",
            "GET /v1/market": "One market's full state by id (chain=1, id=0x + 64 hex).",
            "GET /v1/vaults": "MetaMorpho vaults with asset, net APY and total assets (chain=1, limit=50).",
            "GET /v1/markets": "Lending markets on a chain with supply/borrow APY, TVL, LLTV (chain=1, limit=50)."
        },
        "description": "Live DeFi lending data from Morpho, a leading decentralised lending protocol built on isolated Morpho Blue markets (each a single collateral/loan pair with its own liquidation LTV and oracle) plus curated MetaMorpho vaults. Via Morpho's public GraphQL API. The markets endpoint returns the lending markets on a chain with loan/collateral asset, supply and borrow APY, supplied/borrowed USD, utilisation and liquidation LTV, sorted by size; the market endpoint returns one market's full state by id; the vaults endpoint returns MetaMorpho vaults with asset, net APY and total assets; the chains endpoint lists the chains Morpho runs on. Live, no key, nothing stored. Distinct from on-chain explorers, DEX/yield feeds and price APIs — this is Morpho's own isolated-lending-market, rate and vault layer.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:08.493Z",
        "request_id": "3cf1298f-cbfc-4b61-bc7d-bcdfd8920d6e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}