Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/suinetwork-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}