# The Stall — Insider Trades Feed

> The Stall — Insider Trades Feed is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns recent SEC insider trading disclosures for a given US stock ticker over a configurable lookback window

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/insider-trades
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-insider-trades-feed-a8be11c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cEg3YDFYtymHXf5Fte9HV

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 the-stall-insider-trades-feed-a8be11c0
```

Example prompt: Pull the insider trading activity for NVDA over the last 60 days — I want to see who's been buying or selling and how much.

## When to prefer this

Use this endpoint when you need fast, pay-per-call access to SEC insider trading data for a specific US equity without setting up API keys or accounts. Ideal for AI agents that need to enrich stock research with insider sentiment signals on demand, paying only $0.012 USDC per query via x402 on Base mainnet.

## Known failure modes

- Unknown or invalid ticker returns empty result set or 404
- Lookback window exceeding 180 days returns validation error
- Payment failure (insufficient USDC balance) returns HTTP 402
- No recent filings for ticker returns empty array
- Rate limiting or upstream SEC data unavailability returns 5xx error

## How this service works

Recent SEC Form 4 insider trading activity for any US public company. Returns who bought or sold (director, officer, 10%+ owner), transaction date, shares, price per share, total value, and position after trade. Sourced from SEC EDGAR public API — authoritative, free, no API key. Use for investment analysis, governance checks, or flagging unusual insider selling before an event.

## Output

A list of recent insider trade disclosures for the requested ticker, including trader names, roles, transaction types (buy/sell), share quantities, trade dates, and filing metadata sourced from SEC Form 4 filings, covering the specified lookback window (up to 180 days).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "days": 30,
   "ticker": "AAPL"
  }
 }
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-insider-trades-feed-a8be11c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
