Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/managedmoney-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "market is one of /v1/markets keys (gold, wti, corn, sugar, ...). screener sort is net_pct (default, managed-money net as % of OI), net (raw contracts) or change (week-over-week net change); class filters to metal/energy/grain/soft/livestock. COT updates Fridays; a 30-minute protective cache fronts the shared CFTC upstream.",
        "groups": [
            "managed_money",
            "producer_merchant",
            "swap_dealers",
            "other_reportables"
        ],
        "source": "CFTC Disaggregated Futures-Only report (Socrata), live",
        "classes": [
            "metal",
            "energy",
            "grain",
            "soft",
            "livestock"
        ],
        "markets": 20,
        "service": "managedmoney-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/markets": "The supported commodity futures and their CFTC codes.",
            "GET /v1/screener": "Rank commodities by Managed Money net positioning (sort=net_pct, class=all).",
            "GET /v1/positioning": "Full four-group disaggregated breakdown for one commodity (market=gold)."
        },
        "description": "Managed Money positioning — where the hedge funds are positioned in commodity futures, from the CFTC Disaggregated COT report (no key). It splits the market into Managed Money (hedge funds/CTAs), Producer/Merchant (physical hedgers), Swap Dealers (banks) and Other Reportables — the modern taxonomy the legacy report lacks. positioning returns one commodity's full four-group breakdown with longs/shorts/net, share of open interest, trader counts, week change and a managed-money bias read. screener ranks metals, energy, grain, soft and livestock futures by where Managed Money is positioned. The disaggregated hedge-fund-positioning cut — distinct from the legacy raw COT feed, the normalised COT-Index and the price/open-interest APIs.",
        "upstream_status": "ok",
        "gold_managed_money_net": 112179
    },
    "meta": {
        "timestamp": "2026-06-12T10:34:53.718Z",
        "request_id": "cf0b835b-4d8d-4361-9be2-543a6131b3fe"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}