Zum Inhalt springen
GET /v1/pools

Whirlpools ranked by TVL or volume

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/orca-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "dex": "Orca",
        "sort": "volume_24h",
        "chain": "Solana",
        "count": 718,
        "pools": [
            {
                "pair": "SOL/USDC",
                "price": 127.49637274179749,
                "address": "Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE",
                "fee_pct": 0.04,
                "token_a": "SOL",
                "token_b": "USDC",
                "tvl_usd": 32526289.16,
                "apr_day_pct": 59.33,
                "volume_24h_usd": 230667978.94
            },
            {
                "pair": "SOL/Fartcoin ",
                "price": 289.60115842066847,
                "address": "C9U2Ksk6KKWvLEeo5yUQ7Xu46X7NzeBJtd9PBfuXaUSM",
                "fee_pct": 0.16,
                "token_a": "SOL",
                "token_b": "Fartcoin ",
                "tvl_usd": 3407153.62,
                "apr_day_pct": 495.73,
                "volume_24h_usd": 51209591.38
            },
            {
                "pair": "SOL/JitoSOL",
                "price": 0.8400490396166846,
                "address": "Hp53XEtt4S8SvPCXarsLSdGfZBuUr5mMmZmX2DRNXQKp",
                "fee_pct": 0.01,
                "token_a": "SOL",
                "token_b": "JitoSOL",
                "tvl_usd": 31439173.85,
                "apr_day_pct": 1.12,
                "volume_24h_usd": 20121510.23
            },
            {
                "pair": "SOL/WBTC",
                "price": 0.0015247534004551302,
                "address": "B5EwJVDuAauzUEEdwvbuXzbFFgEYnUqqS37TUM1c4PQA",
                "fee_pct": 0.05,
                "token_a": "SOL",
                "token_b": "WBTC",
                "tvl_usd": 5319196.55,
                "apr_day_pct": 38.89,
                "volume_24h_usd": 19329592.9
            },
            {
                "pair": "SOL/cbBTC",
                "price": 0.001524787507243361,
                "address": "CeaZcxBNLpJWtxzt58qQmfMBtJY8pQLvursXTJYGQpbN",
                "fee_pct": 0.16,
                "token_a": "SOL",
                "token_b": "cbBTC",
                "tvl_usd": 10487327.11,
                "apr_day_pct": 51.29,
                "volume_24h_usd": 16287492.07
            },
            {
                "pair": "SOL/whETH",
                "price": 0.06923585496073854,
                "address": "HktfL7iwGKT5QHjywQkcDnZXScoh811k7akrMZJkCcEF",
                "fee_pct": 0.05,
                "token_a": "SOL",
                "token_b": "whETH",
                "tvl_usd": 4055881.08,
                "apr_day_pct": 41.09,
                "volume_24h_usd": 15673424.34
            },
            {
                "pair": "SOL/JLP",
                "price": 34.180055028250834,
                "address": "6a3m2EgFFKfsFuQtP4LJJXPcAe3TQYXNyHUjjZpUxYgd",
                "fee_pct": 0.04,
                "token_a": "SOL",
                "token_b": "JLP",
                "tvl_usd": 3709271.5,
                "apr_day_pct": 29.85,
                "volume_24h_
…