/v1/screener
Rank commodities by Managed Money net positioning
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/managedmoney-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/managedmoney-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/managedmoney-api/v1/screener");
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/managedmoney-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Commodities ranked by Managed Money (hedge-fund) net positioning as a share of open interest. High = funds crowded net long (bullish bet, contrarian risk if extreme); low/negative = crowded net short. sort=net ranks by raw contracts, sort=change by week-over-week net change. Source CFTC Disaggregated, updated Fridays.",
"class": "all",
"count": 20,
"group": "managed_money",
"source": "CFTC Disaggregated Commitments of Traders (futures-only)",
"results": [
{
"net": 112179,
"bias": "hedge funds crowded net long (bullish positioning)",
"name": "Gold",
"rank": 1,
"class": "metal",
"market": "gold",
"available": true,
"net_pct_oi": 34.41,
"long_pct_oi": 39.7,
"report_date": "2026-06-02",
"short_pct_oi": 5.3,
"net_change_week": 14733
},
{
"net": 116107,
"bias": "hedge funds crowded net long (bullish positioning)",
"name": "Live Cattle",
"rank": 2,
"class": "livestock",
"market": "cattle",
"available": true,
"net_pct_oi": 33.82,
"long_pct_oi": 37.7,
"report_date": "2026-06-02",
"short_pct_oi": 3.9,
"net_change_week": -4435
},
{
"net": 75747,
"bias": "hedge funds crowded net long (bullish positioning)",
"name": "Copper",
"rank": 3,
"class": "metal",
"market": "copper",
"available": true,
"net_pct_oi": 27.36,
"long_pct_oi": 32.9,
"report_date": "2026-06-02",
"short_pct_oi": 5.6,
"net_change_week": 5247
},
{
"net": 67773,
"bias": "net long",
"name": "Gasoline RBOB",
"rank": 4,
"class": "energy",
"market": "gasoline",
"available": true,
"net_pct_oi": 22.4,
"long_pct_oi": 24.1,
"report_date": "2026-06-02",
"short_pct_oi": 1.7,
"net_change_week": 711
},
{
"net": 150595,
"bias": "net long",
"name": "Soybean Oil",
"rank": 5,
"class": "grain",
"market": "soybeanoil",
"available": true,
"net_pct_oi": 20.55,
"long_pct_oi": 23.9,
"report_date": "2026-06-02",
"short_pct_oi": 3.3,
"net_change_week": 10816
},
{
…