# BTC Node API — SEC EDGAR Insider Trading Filings by Ticker

> BTC Node API — SEC EDGAR Insider Trading Filings by Ticker is a paid API for AI agents from btcnode.uk, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves SEC EDGAR insider trading filings (Form 3, Form 4, Form 5) for a given stock ticker symbol, including trade details and filing dates.

## Facts

- Endpoint: GET https://btcnode.uk/api/sec/insider/%7Bticker%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/btc-node-api-sec-edgar-insider-trading-filings-by-ticker-2868fefa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pBmLdYXiLxSCP15UKpcrs

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 btc-node-api-sec-edgar-insider-trading-filings-by-ticker-2868fefa
```

Example prompt: Pull up the SEC EDGAR insider trading filings for NVDA — I want to see the Form 4 disclosures and trade details for recent insider activity.

## When to prefer this

Use this endpoint when you need structured SEC EDGAR insider trading disclosure data (Form 3/4/5) for a specific public company ticker, especially when building financial research tools, monitoring insider sentiment, or enriching equity analysis workflows. Prefer this over manual SEC EDGAR scraping when you need a clean, API-accessible, pay-per-call result without a subscription.

## Known failure modes

- Invalid or unknown ticker symbol returns empty trades array or error
- Ticker not found in SEC EDGAR returns no results
- Network or upstream SEC EDGAR unavailability causes timeout or 5xx error
- Malformed ticker path parameter may return 400 or unexpected response
- Payment not processed (x402) results in 402 Payment Required response

## How this service works

Bitcoin blockchain data, address portfolio, transaction tracing, fee forecasting, whale monitoring, SEC EDGAR filings, URL scraping, AI summarization, and Reddit API via x402 micropayments on Base.

## Output

Returns a JSON object containing the ticker symbol and an array of insider trading filings, each with form type (e.g. Form 4) and filing date, reflecting reported insider buy/sell transactions from SEC EDGAR.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "ticker": "MSFT"
  },
  "queryParams": {}
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "AAPL",
  "trades": [
   {
    "form": "4",
    "filing_date": "2026-05-12"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/btc-node-api-sec-edgar-insider-trading-filings-by-ticker-2868fefa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from btcnode.uk](https://www.zero.xyz/host/btcnode.uk/llms.txt)
