Naar de inhoud
GET /v1/search

Find exchanges by name

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cryptoexchanges-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 8,
        "query": "binance",
        "source": "CoinPaprika",
        "exchanges": [
            {
                "id": "binance",
                "name": "Binance",
                "active": true,
                "markets": 1319,
                "currencies": 428,
                "adjusted_rank": 1,
                "volume_7d_usd": 8787881161.12,
                "volume_24h_usd": 7387244001.49,
                "confidence_score": 0.656227
            },
            {
                "id": "binance-us",
                "name": "Binance US",
                "active": true,
                "markets": 200,
                "currencies": 139,
                "adjusted_rank": 114,
                "volume_7d_usd": 63556386.82,
                "volume_24h_usd": 11887021.43,
                "confidence_score": 0.792605
            },
            {
                "id": "binance-futures",
                "name": "Binance Futures",
                "active": true,
                "markets": 510,
                "currencies": 476,
                "adjusted_rank": 352,
                "volume_7d_usd": 0,
                "volume_24h_usd": 0,
                "confidence_score": 0.285651
            },
            {
                "id": "binance-alpha",
                "name": "Binance Alpha",
                "active": true,
                "markets": 0,
                "currencies": 1,
                "adjusted_rank": null,
                "volume_7d_usd": 0,
                "volume_24h_usd": 0,
                "confidence_score": 0
            },
            {
                "id": "binance-dex",
                "name": "Binance DEX",
                "active": true,
                "markets": 0,
                "currencies": 1,
                "adjusted_rank": null,
                "volume_7d_usd": 0,
                "volume_24h_usd": 0,
                "confidence_score": 0
            },
            {
                "id": "binance-jersey",
                "name": "Binance Jersey",
                "active": true,
                "markets": 0,
                "currencies": 1,
                "adjusted_rank": null,
                "volume_7d_usd": 0,
                "volume_24h_usd": 0,
                "confidence_score": 0
            },
            {
                "id": "binance-jex-futures",
                "name": "Binance JEX Futures",
                "active": true,
                "markets": 0,
                "currencies": 1,
                "adjusted_rank": null,
                "volume_7d_usd": 0,
                "volume_24h_usd": 0,
                "confidence_score": 0
            },
            {
                "id": "binance-jex-spot",
                "name": "Binance JEX (Spot)",
                "active": true,
                "markets": 0,
                "currencies": 1,
                "adjusted_rank": null,
                "volume_7d_usd": 0,
                "volume_24h_usd": 0,
                "confide
…