/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/raydium-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/raydium-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/raydium-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/raydium-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Raydium API v3 (api-v3.raydium.io, live)",
"service": "raydium-api",
"symbols": [
"SOL",
"WSOL",
"RAY",
"USDC",
"USDT",
"MSOL",
"JITOSOL",
"BONK",
"JUP",
"WIF"
],
"tvl_usd": 1364804044.57,
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pool": "One pool's full state by id (id=…).",
"GET /v1/pools": "Top pools by liquidity/volume/apr/fees (type=all, sort=liquidity, limit=25).",
"GET /v1/price": "Live USD price of SPL token(s) by mint or symbol (mint=SOL or comma-separated).",
"GET /v1/overview": "Protocol total value locked and 24h volume."
},
"description": "Live data from Raydium, the largest automated-market-maker DEX on Solana, whose standard (AMM) and concentrated-liquidity (CLMM) pools route most of Solana's on-chain swap volume. The overview endpoint returns the protocol's total value locked and 24h volume; the pools endpoint returns the top pools by liquidity, volume, APR or fees (pair, type, price, TVL, 24h volume, fee APR, fee rate); the pool endpoint returns one pool's full state by id (with weekly/monthly volume and the CLMM price range); the price endpoint returns the live USD price of one or more SPL tokens by mint address (with symbol shortcuts for SOL, RAY, USDC …). Live, no key, nothing stored. Distinct from Ethereum AMM feeds (Balancer, Curve), order-book/perps DEX feeds and swap aggregators — this is Raydium's own Solana AMM/CLMM pool, TVL/volume/APR and token-pricing layer.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:57:25.798Z",
"request_id": "dfc22620-3b59-4e8c-8eeb-0e03144b5616"
},
"status": "ok",
"message": "Meta",
"success": true
}