# x402stock CFTC Commitments of Traders (COT) Report

> x402stock CFTC Commitments of Traders (COT) Report is a paid API for AI agents from x402stock.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns the latest CFTC Commitments of Traders (COT) data showing commercial and non-commercial net positioning across futures markets including metals, energy, and financials.

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/cot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-cftc-commitments-of-traders-cot-report-8b78eea9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_efk-MG1Nsv-dnqhpPHOCj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402stock-cftc-commitments-of-traders-cot-report-8b78eea9
```

Example prompt: Pull the latest CFTC Commitments of Traders report and show me the commercial and non-commercial net positioning for gold and other metals futures — I want to see if large speculators are net long or short right now.

## When to prefer this

Use this endpoint when you need authoritative CFTC COT positioning data showing commercial hedger vs large speculator vs small trader net futures positions. Ideal for sentiment analysis, contrarian signals, or trend-following strategies based on institutional futures positioning. Prefer this over general market sentiment APIs when you specifically need CFTC-sourced legacy futures-only report data for commodities like gold, energy, or financials.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required
- CFTC data not yet updated for current week — stale as_of date returned
- Invalid query parameters — 400 Bad Request
- Service unavailable — 503 or timeout

## How this service works

The weekly CFTC Commitments of Traders positioning across major futures markets in one call: for each market the open interest, non-commercial (large speculator) net position and weekly change, and commercial (hedger) net position. Covers equity indices, gold/silver, crude/natural gas, major FX, the 10-year note, and bitcoin. No ticker needed. Sourced from the US CFTC. From x402stock

## Output

Returns a JSON object with the report date, source (CFTC), and an array of markets each containing: market name, group (e.g. metals), contract code, open interest, commercial net position, non-commercial net position, open interest change since prior week, and non-commercial net change since prior week. Includes CFTC attribution string.

## Example request

```json
{
 "properties": "open_interest,volume,price"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-06-02T00:00:00.000Z",
  "report": "legacy_futures_only",
  "source": "cftc",
  "markets": [
   {
    "name": "Gold",
    "group": "metals",
    "market": "gold",
    "report_date": "2026-06-02",
    "contract_code": "088691",
    "open_interest": 326052,
    "commercial_net": -206345,
    "noncommercial_net": 176020,
    "open_interest_change": -27437,
    "noncommercial_net_change": 21760
   }
  ],
  "attribution": "Source: U.S. Commodity Futures Trading Commission (CFTC) Commitments of Traders"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-cftc-commitments-of-traders-cot-report-8b78eea9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402stock.xyz](https://www.zero.xyz/host/x402stock.xyz/llms.txt)
