CFTC Positioning API
Structured JSON access to the weekly Commitments of Traders data — smart-money positioning across major contracts with week-over-week position changes.
Why not just parse the raw CFTC files?
You can. The CFTC publishes the raw COT files every Friday as text and Excel downloads. But parsing them into usable JSON requires handling multiple report formats (legacy, disaggregated, and Traders in Financial Futures), reconciling contract names across reports, computing week-over-week deltas, and tracking historical time series. Most developers who need COT data end up building a mini ETL pipeline. BullrunData wraps that work behind a REST endpoint.
List available contracts
GET /api/v1/institutional/cftc/contracts returns every contract covered by the Disaggregated (commodities and agriculture) and TFF (financial futures) reports — with contract name, exchange, and report type (disaggregated or tff). The curated legacy 5-contract summary is exposed separately at /api/v1/institutional/cftc.
Get positioning for a specific contract
GET /api/v1/institutional/cftc/positioning?contract=... returns the current positioning for the requested contract, structured by trader category with week-over-week deltas.
Curated 5-contract summary
GET /api/v1/institutional/cftc returns a curated view of five headline contracts (S&P 500, 10-year Treasury, gold, WTI crude, U.S. dollar index) using the legacy non-commercial bucket — the format most traders reference in weekly market notes.
Common integrations
- Extreme-positioning alerts: configure a webhook to fire when managed-money net positioning in a contract exceeds the top or bottom 5% of the trailing 3-year range — a classic contrarian signal.
- Sentiment overlays: combine COT positioning with price and volume to build a composite sentiment score for asset allocation.
- Weekly newsletter automation: pull Friday's report at 5 PM ET, format the deltas, and email subscribers automatically.
- MCP for AI agents: the
cftc_positioning_detailandcftc_contracts_listMCP tools let an AI agent query positioning during a conversation about a specific market.
Related resources
- Glossary: COT Report — background on the three report formats
- BullrunData vs Nasdaq Data Link — why bundled CFTC access is a differentiator
- API Documentation — full REST reference