Power your AI workflows with the DEHY MCP server. Learn more →

Developers

Two clean surfaces
over every filing.

Everything you see on DEHY is reachable from your own stack — a bearer-authenticated REST API at /api/v1, and a Model Context Protocol server your AI client can speak to directly. JSON, no SDK required, low ceremony.

Sign up Read the methodology

Built for desks that wire the data into their own models, notebooks, and alerting

REST API

/api/v1 · bearer-auth · JSON

MCP server

npx -y @dehy-mcp/server@latest

7 tools

filings · insider · 13F · CFTC · score · news

REST API · /api/v1

A clean REST API on top of every filing.

Bearer-authenticated, JSON, no SDK required. Mint a key from your account, pass it as a token, and the same data behind the platform drops straight into your existing research notebook or alerting.

Authentication

Keys are SHA-256 hashed at rest. You see the secret part exactly once on creation — after that, only the four-character prefix.

Rate limits & stability

The current ceiling is echoed in the X-RateLimit-Limit header on every response. We version the URL prefix, not individual fields — additive changes ship quietly, breaking changes ship as a new version.

Request

$ curl https://dehy.io/api/v1/filings \
-H "Authorization: Bearer dh_live_…"

Endpoints

GET/api/v1/filings
GET/api/v1/filings/:accession
GET/api/v1/scores
GET/api/v1/cot/markets

Add to any AI client

npx -y @dehy-mcp/server@latest

Sample tool call

// conviction lookup
conviction({ ticker: "NVDA" })

Seven tools

filing_searchinsider_alphaconvictionthirteen_f_flowcftc_positioningdehy_scorenews

MCP server · native

Query the desk from Claude, Cursor, or ChatGPT.

DEHY speaks the Model Context Protocol, so your AI client can reach the live desk directly — no glue code. One install line, seven tools, and every answer is grounded in the data and honest about what it cannot find.

What you get back

Typed JSON, with the receipts attached.

Structured filings

Form 4, 13F, 13D/G, 8-K, S-1 — parsed to typed rows, with the source accession on every record.

The DEHY Score

A reproducible 0–100 read on every Form 4, with the five-factor breakdown and the algorithm version inline.

Market context

Top scores as a daily signal feed, plus CFTC Commitments-of-Traders snapshots and per-market weekly history.

GET /api/v1/filings

{ "filings": [ { "accession": "0001127602-26-…", "formType": "4", "filedAt": "2026-05-24T18:42:11Z", "issuer": { "ticker": "PLTR", "name": "Palantir…" }, "dehyScore": { "score": 67, "direction": "sell", "algoVersion": "2026-06-03.v3" } } ] }

Wire the filing into your own stack.

The REST API and the MCP server ship with every plan. Pricing on request.