/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/suinetwork-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/suinetwork-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/suinetwork-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/suinetwork-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sample": {
"epoch": 1158,
"gas_price": 100
},
"source": "public Sui fullnode JSON-RPC (fullnode.mainnet.sui.io), keyless",
"service": "suinetwork-api",
"endpoints": {
"GET /v1/coin": "A coin type's metadata: decimals, name, symbol, icon (coin_type; omit for SUI).",
"GET /v1/meta": "This document.",
"GET /v1/epoch": "Current epoch economics: gas price, total stake, storage fund, protocol version.",
"GET /v1/checkpoint": "The latest checkpoint: epoch, digest, tx count, gas summary (seq optional)."
},
"description": "Read Sui's network state live from a public Sui fullnode JSON-RPC: read the latest checkpoint (epoch, digest, network tx count, gas-cost summary), read the current epoch's economics (reference gas price, total stake, storage fund, protocol version), and resolve any coin type's metadata (decimals, name, symbol, icon). The network / epoch / coin-metadata layer for Sui explorers, wallets and analytics. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:03:47.448Z",
"request_id": "68ea5d12-87e0-41fa-bd95-4a08d0874bfa"
},
"status": "ok",
"message": "Meta",
"success": true
}