CFTC Commitments of Traders — weekly disaggregated futures positioning by commodity: manag
CFTC Commitments of Traders — weekly disaggregated futures positioning by commodity: managed-money long/short/net, producer-merchant, swap-dealer, and open interest. 20-year history, cleaned and canonicalized from the CFTC feed. Filter by commodity (gold/silver/copper/platinum/palladium/wti_crude).
10000 (raw units)
price
9
calls / 30d
6
unique payers
2026-09-16
updated
Provider
thevaultreport.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x74500ee8519da3b6bf43642bc06be5874a9ecc99",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"commodity": "gold",
"from": "2026-01-01",
"page": 1,
"to": "2026-04-30"
},
"type": "http"
},
"output": {
"example": {
"attribution": "Attribute to The Vault Report with a link to https://thevaultreport.com",
"endpoint": "cot/positioning",
"filters": {
"commodity": "gold"
},
"generated_at": "2026-04-18T14:00:00Z",
"license": "CC BY 4.0",
"next_page": 2,
"page": 1,
"page_size": 25,
"related": [],
"returned": 1,
"rows": [
{
"commodity": "GOLD",
"contract_code": "088691",
"managed_money_long": 1250,
"managed_money_net": 1250,
"managed_money_short": 1250,
"open_interest": 418200,
"producer_merchant_long": 1250,
"producer_merchant_short": 1250,
"report_date": "2026-04-17",
"swap_long": 1250,
"swap_short": 1250
}
],
"schema_version": 1,
"source": "The Vault Report",
"source_url": "https://thevaultreport.com",
"total_matches": 1482
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"commodity": {
"example": "gold",
"type": "string"
},
"from": {
"example": "2026-01-01",
"format": "date",
"type": "string"
},
"page": {
"default": 1,
"example": 1,
"minimum": 1,
"type": "integer"
},
"to": {
"example": "2026-04-30",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"attribution": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"filters": {
"description": "Echo of the filters that were applied.",
"type": "object"
},
"generated_at": {
"format": "date-time",
"type": "string"
},
"license": {
"type": "string"
},
"next_page": {
"description": "Next page number, or null when this is the last page.",
"type": [
"integer",
"null"
]
},
"page": {
"type": "integer"
},
"page_size": {
"type": "integer"
},
"related": {
"description": "Sibling endpoints worth buying next.",
"items": {
"type": "object"
},
"type": "array"
},
"returned": {
"type": "integer"
},
"rows": {
"items": {
"properties": {
"commodity": {
"type": "string"
},
"contract_code": {
"type": "string"
},
"managed_money_long": {
"type": "number"
},
"managed_money_net": {
"type": "number"
},
"managed_money_short": {
"type": "number"
},
"open_interest": {
"type": "number"
},
"producer_merchant_long": {
"type": "number"
},
"producer_merchant_short": {
"type": "number"
},
"report_date": {
"format": "date",
"type": "string"
},
"swap_long": {
"type": "number"
},
"swap_short": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"schema_version": {
"type": "integer"
},
"source": {
"type": "string"
},
"source_url": {
"type": "string"
},
"total_matches": {
"type": "integer"
}
},
"required": [
"endpoint",
"rows",
"total_matches"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://thevaultreport.com/api/x402/cot/positioning" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://thevaultreport.com/api/x402/cot/positioning");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://thevaultreport.com/api/x402/cot/positioning")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4555.json, and this resource appears in /discovery/resources and /discovery/search.