Skip to content
GET /v1/funding

Funding-rate history for a contract

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/apex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 10,
        "symbol": "BTC-USDT",
        "funding": [
            {
                "rate": -8.54e-6,
                "price": 65909.2,
                "funding_time": 1781521200000
            },
            {
                "rate": -5.81e-6,
                "price": 65597.5,
                "funding_time": 1781517600000
            },
            {
                "rate": 1.15e-6,
                "price": 65663.49,
                "funding_time": 1781514000000
            },
            {
                "rate": -1.36e-6,
                "price": 65672.77,
                "funding_time": 1781510400000
            },
            {
                "rate": -1.342e-5,
                "price": 65814.49,
                "funding_time": 1781506800000
            },
            {
                "rate": -1.097e-5,
                "price": 65861.95,
                "funding_time": 1781503200000
            },
            {
                "rate": -2.167e-5,
                "price": 65646.8,
                "funding_time": 1781499600000
            },
            {
                "rate": -7.33e-6,
                "price": 65904.22,
                "funding_time": 1781496000000
            },
            {
                "rate": -7.43e-6,
                "price": 65456.05,
                "funding_time": 1781492400000
            },
            {
                "rate": -8.75e-6,
                "price": 65500.73,
                "funding_time": 1781488800000
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:58.215Z",
        "request_id": "8d1f8e82-2698-4a95-abc2-6f0b59cdeae6"
    },
    "status": "ok",
    "message": "Funding retrieved successfully",
    "success": true
}