Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/kava-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}