Naar de inhoud
GET /v1/search

Search contracts by symbol

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 13,
        "query": "ETH",
        "total": 13,
        "contracts": [
            {
                "symbol": "ETHUSDT",
                "last_price": 1665.04,
                "mark_price": 1665.03,
                "volume_24h": 2249780.68,
                "index_price": 1666.05,
                "funding_rate": -0.0002355,
                "turnover_24h": 3777987088.3854,
                "open_interest": 905678.11,
                "funding_rate_pct": -0.02355,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 1507981223.49,
                "price_change_24h_pct": -0.93,
                "funding_rate_annualized_pct": -25.79
            },
            {
                "symbol": "ETHPERP",
                "last_price": 1665.17,
                "mark_price": 1665.17,
                "volume_24h": 6174.06,
                "index_price": 1665.82,
                "funding_rate": -0.00011029,
                "turnover_24h": 10364759.8113,
                "open_interest": 21907.47,
                "funding_rate_pct": -0.011029,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 36479661.82,
                "price_change_24h_pct": -0.89,
                "funding_rate_annualized_pct": -12.08
            },
            {
                "symbol": "ETHFIUSDT",
                "last_price": 0.2997,
                "mark_price": 0.2997,
                "volume_24h": 7667123.5,
                "index_price": 0.2999,
                "funding_rate": 5.0e-5,
                "turnover_24h": 2329049.5881,
                "open_interest": 13198168.4,
                "funding_rate_pct": 0.005,
                "next_funding_time": "2026-06-09T04:00:00.000Z",
                "open_interest_value": 3955491.07,
                "price_change_24h_pct": 0.37,
                "funding_rate_annualized_pct": 5.48
            },
            {
                "symbol": "ETHUSDT-19JUN26",
                "last_price": 1666.98,
                "mark_price": 1666.13,
                "volume_24h": 1233.05,
                "index_price": 1666.04,
                "funding_rate": null,
                "turnover_24h": 2064140.8013,
                "open_interest": 3854.06,
                "funding_rate_pct": null,
                "next_funding_time": "1970-01-01T00:00:00.000Z",
                "open_interest_value": 6421364.99,
                "price_change_24h_pct": -0.9,
                "funding_rate_annualized_pct": null
            },
            {
                "symbol": "ETHUSDT-12JUN26",
                "last_price": 1666.63,
                "mark_price": 1665.89,
                "volume_24h": 1075.78,
                "index_price": 1666.04,
                "funding_rate": null,
                "turnover_24h": 1799501.3377,
                "open_interest": 5087.72,
                "funding_rate_pct": null,
                "next_funding_time
…