/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/orca-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/orca-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/orca-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/orca-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Filter pools by token symbol (token=SOL, token=USDC) and sort by tvl (default) or volume. A pool is looked up by its on-chain Whirlpool address. APR and fee rates are percentages; only pools above $1k TVL are listed.",
"source": "Orca public Whirlpools API (api.mainnet.orca.so/v1, live)",
"service": "orca-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pool": "One Whirlpool in full by address (address=...).",
"GET /v1/pools": "Whirlpools ranked by TVL or volume (token=SOL, sort=tvl|volume, limit=50 — all optional).",
"GET /v1/summary": "DEX aggregate — TVL, 24h volume, top pools by liquidity and volume."
},
"description": "Live concentrated-liquidity DEX data from Orca, the leading Solana CLMM exchange, over its public Whirlpools API. The Solana on-chain liquidity view — every Whirlpool with its value locked, trading volume, price and the yield earned by liquidity providers. pools = Whirlpools (optionally filtered by token) ranked by value locked or volume, each with pair, price, fee tier, 24h volume and APR; pool = one Whirlpool in full by address (incl. 7d/30d volume, weekly/monthly APR, fee APR, tick spacing, token mints); summary = the DEX aggregate (total value locked, 24h volume, pool count, top pools by liquidity and volume). Live, no key, nothing stored. Concentrated-liquidity (Uniswap-V3-style) on Solana — distinct from the aggregator, AMM and other DeFi APIs.",
"upstream_status": "ok",
"whirlpools_tracked": 14983
},
"meta": {
"timestamp": "2026-06-12T01:42:22.105Z",
"request_id": "31bc828a-02c4-4ffc-9cfc-1619fed37ee9"
},
"status": "ok",
"message": "Meta",
"success": true
}