Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/cetus-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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