Sec Ftd

live Reference

SEC Fails-to-Deliver (CNS fails data).

3 tools
0ms auth
free tier 50 calls/day

Tools

ftd_security

Fails-to-deliver history for one US-listed security from the SEC's CNS fails-to-deliver file, by ticker symbol. Returns each settlement date with the number of shares that failed to deliver, the closi

No parameters required.

Try it
ftd_largest

The largest fails-to-deliver in one SEC reporting period, ranked by share count, from the CNS fails-to-deliver file. Returns ticker, security description, settlement date, shares failed and price. A f

No parameters required.

Try it
ftd_periods

Which SEC fails-to-deliver reporting periods are currently published, newest first. SEC posts one file per half month ("a" = 1st-15th, "b" = 16th to month end). Use this to pick a valid period argumen

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/sec-ftd/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/sec-ftd/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ftd_security","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ftd_security", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("sec fails-to-deliver (cns fails data)");