/v1/meta
Service metadata and endpoint list
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/cryptoexchanges-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoexchanges-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoexchanges-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/cryptoexchanges-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Volumes in USD. adjusted = wash-trade-filtered (CoinPaprika).",
"source": "CoinPaprika API (api.coinpaprika.com, live)",
"service": "cryptoexchanges-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/search": "Find exchanges by name (q=binance).",
"GET /v1/markets": "An exchange's trading pairs by 24h volume (id=binance, limit=50).",
"GET /v1/exchange": "One exchange's full profile (id=binance).",
"GET /v1/exchanges": "Crypto exchanges ranked by 24h volume (limit=50, active=true)."
},
"description": "Live rankings and comparison of crypto exchanges from the public CoinPaprika feed. The exchanges endpoint ranks every crypto exchange by adjusted 24h volume with its 7d/30d volume, number of markets and currencies and confidence score; the exchange endpoint returns one exchange's full profile (volumes, market count, website and social links, status); the markets endpoint lists an exchange's trading pairs with price and 24h volume; the search endpoint finds exchanges by name. Live, no key, nothing stored. A cross-exchange comparison layer, distinct from single-exchange ticker feeds and whole-market price feeds — it answers which venues are biggest and what they trade.",
"exchange_count": 1114,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:18.880Z",
"request_id": "598fb7a2-6f5d-4fd8-adf7-62bd6bf2804b"
},
"status": "ok",
"message": "Meta",
"success": true
}