Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cetus-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "Cetus API (api-sui.cetus.zone, live)",
        "service": "cetus-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pool": "One pool's full state by address (address=0x…).",
            "GET /v1/pools": "Top pools by TVL, volume or APR (sort=tvl, limit=25).",
            "GET /v1/search": "Find pools by token symbol (q=SUI, limit=25)."
        },
        "description": "Live data from Cetus, the largest concentrated-liquidity (CLMM) DEX on Sui, which runs most of Sui's on-chain swap volume across thousands of pools. The pools endpoint returns the top pools by TVL, volume or APR — token pair, fee tier, total liquidity, 24h volume and fees, fee APR and reward APR, and the current price; the pool endpoint returns one pool's full state by address; the search endpoint finds pools by token symbol. Live, no key, nothing stored. Distinct from Ethereum and Solana DEX feeds, lending, staking and oracle APIs — this is Cetus's own Sui CLMM pool, TVL/volume/APR and pricing layer, and the only Sui-native DeFi feed here.",
        "total_pools": 43221,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:00.975Z",
        "request_id": "d50416e6-8aea-42e3-9f76-62731e99dd9c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}