/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/kava-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kava-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kava-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/kava-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"type": "Cosmos-SDK DeFi money market",
"height": 21124095,
"source": "Kava public REST (api.data.kava.io, live)",
"service": "kava-api",
"endpoints": {
"GET /v1/cdp": "Every collateral type with liquidation ratio, stability fee, debt limit and USDX minted.",
"GET /v1/meta": "This document.",
"GET /v1/prices": "On-chain pricefeed oracle prices (optional market=btc:usd, twap=true to include TWAP).",
"GET /v1/supply": "Circulating USDX (minted) and KAVA supply.",
"GET /v1/network": "Chain head — chain id, block height and time."
},
"stablecoin": "USDX",
"description": "Live on-chain DeFi data from the Kava blockchain, a Cosmos-SDK Layer-1 whose core is a decentralised money market: users lock collateral to mint the USDX stablecoin (collateralised debt positions) and lend/borrow through the Hard money market, with an on-chain price oracle. Via a public Kava REST node. The network endpoint returns the chain head (chain id, height, time); the cdp endpoint returns every collateral type with its liquidation ratio, stability fee, debt limit and the total USDX minted against it; the prices endpoint returns the on-chain pricefeed oracle prices; the supply endpoint returns circulating USDX and KAVA. Live, no key, nothing stored. Distinct from the Cosmos Hub, Injective, Celestia and other Cosmos-chain APIs and from price feeds — this is Kava's own CDP, USDX stablecoin and oracle layer.",
"native_token": "KAVA",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:58:49.525Z",
"request_id": "be842ea4-463b-41fa-83d5-022667c56ca4"
},
"status": "ok",
"message": "Meta",
"success": true
}