Skip to content
GET /v1/search

Find pools by token symbol

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/cetus-api

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

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "chain": "sui",
        "count": 25,
        "pools": [
            {
                "name": "USDC-Sui",
                "pair": "USDC-SUI",
                "price": 1.36845767,
                "address": "0xb8d7d9e66a60c239e7a60110efcf8de6c705580ed924d0dde141f4a0e2c90105",
                "token_a": "USDC",
                "token_b": "SUI",
                "tvl_usd": 3928625.14,
                "fee_24h_usd": 8017.62,
                "fee_apr_pct": 74.49,
                "fee_tier_pct": 0.25,
                "total_apr_pct": 89.5676,
                "reward_apr_pct": 15.0777,
                "volume_24h_usd": 3207047.71
            },
            {
                "name": "haSUI-Sui",
                "pair": "haSUI-SUI",
                "price": 1.01724617,
                "address": "0x871d8a227114f375170f149f7e9d45be822dd003eba225e83c05ac80828596bc",
                "token_a": "haSUI",
                "token_b": "SUI",
                "tvl_usd": 2945462.83,
                "fee_24h_usd": 3.19,
                "fee_apr_pct": 0.0395,
                "fee_tier_pct": 0.01,
                "total_apr_pct": 0.0395,
                "reward_apr_pct": 0,
                "volume_24h_usd": 31893.76
            },
            {
                "name": "USDC-Sui Dollar",
                "pair": "USDC-USDSUI",
                "price": 66.51251557,
                "address": "0xa7417fb5f59e23b0a7826d78f025653823c49265be07bbf6dd9e553ba4249a56",
                "token_a": "USDC",
                "token_b": "USDSUI",
                "tvl_usd": 1308095.52,
                "fee_24h_usd": 21.63,
                "fee_apr_pct": 0.6036,
                "fee_tier_pct": 0.01,
                "total_apr_pct": 0.6036,
                "reward_apr_pct": 0,
                "volume_24h_usd": 216327.38
            },
            {
                "name": "USDC-Sui",
                "pair": "USDC-SUI",
                "price": 1.38941606,
                "address": "0x51e883ba7c0b566a26cbc8a94cd33eb0abd418a77cc1e60ad22fd9b1f29cd2ab",
                "token_a": "USDC",
                "token_b": "SUI",
                "tvl_usd": 787204.63,
                "fee_24h_usd": 719.39,
                "fee_apr_pct": 33.3558,
                "fee_tier_pct": 0.05,
                "total_apr_pct": 45.4231,
                "reward_apr_pct": 12.0673,
                "volume_24h_usd": 1438784.89
            },
            {
                "name": "Cetus Token-Sui",
                "pair": "CETUS-SUI",
                "price": 1.00170136,
                "address": "0x2e041f3fd93646dcc877f783c1f2b7fa62d30271bdef1f21ef002cebf857bded",
                "token_a": "CETUS",
                "token_b": "SUI",
                "tvl_usd": 553751.59,
                "fee_24h_usd": 159.95,
                "fee_apr_pct": 10.5428,
                "fee_tier_pct": 0.25,
                "total_apr_pct": 15.1174,
                "reward_apr_pct": 4.5746,
                "volume_24h_us
…