Naar de inhoud
GET /v1/meta

Chain metadata & endpoint guide

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/sentinel-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "chain": "sentinelhub-2",
        "token": "DVPN",
        "source": "Sentinel public Cosmos REST/LCD, keyless (3-mirror)",
        "network": "Sentinel Hub",
        "decimals": 6,
        "examples": {
            "nodes": "/v1/nodes?status=active&limit=20",
            "providers": "/v1/providers?limit=20",
            "validators": "/v1/validators?limit=20"
        },
        "endpoints": {
            "/v1/block": "latest block (height, time, chain_id)",
            "/v1/nodes": "dVPN node registry (status=active|inactive, limit) — per-GB & hourly bandwidth prices, remote address",
            "/v1/supply": "total DVPN supply",
            "/v1/staking": "staking pool, bonded ratio and params",
            "/v1/providers": "registered dVPN providers (name, website, status)",
            "/v1/validators": "bonded validator set ranked by voting power (limit)"
        },
        "micro_denom": "udvpn",
        "cache_ttl_ms": 20000
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:21.178Z",
        "request_id": "9972b105-a9c8-4210-827d-9bd5adc2a625"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}