Zum Inhalt springen
GET /v1/report

Latest COT report for a market

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cot-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "market": "GOLD - COMMODITY EXCHANGE INC.",
        "commodity": "GOLD",
        "commercial": {
            "net": -206345,
            "long": 53851,
            "short": 260196,
            "traders": 44,
            "pct_oi_long": 16.5
        },
        "report_date": "2026-06-02",
        "open_interest": 326052,
        "other_matches": [
            "MICRO GOLD - COMMODITY EXCHANGE INC."
        ],
        "total_traders": 258,
        "weekly_change": {
            "open_interest": -27437,
            "commercial_long": -20790,
            "commercial_short": -211,
            "noncommercial_long": 5392,
            "noncommercial_short": -16368
        },
        "non_commercial": {
            "net": 176020,
            "long": 206096,
            "short": 30076,
            "spread": 22449,
            "traders": 153,
            "pct_oi_long": 63.2
        },
        "non_reportable": {
            "net": 30325,
            "long": 43656,
            "short": 13331
        }
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:18.292Z",
        "request_id": "eaa5e217-1736-4c84-bc53-6e18fe90c4a0"
    },
    "status": "ok",
    "message": "Report retrieved successfully",
    "success": true
}