# AgentToll Insider Trades

> AgentToll Insider Trades is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Retrieves recent SEC insider trading filings (Form 4) for a specific stock ticker or across the market

## Facts

- Endpoint: POST https://agenttoll.dev/paid/finance/insider-trades
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-insider-trades-620b9961
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QpS07UiSJGikpeCxGj_9O

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 agenttoll-insider-trades-620b9961 -d '<json body>'
```

Example prompt: Show me the last 20 insider trades for NVDA — I want to see if any executives have been buying or selling recently.

## When to prefer this

Use this endpoint when you need structured, pay-per-call access to SEC insider trading data without a subscription, especially within an agentic workflow using x402/USDC micropayments. Prefer this over scraping SEC EDGAR directly when you need clean, parsed JSON output ready for agent consumption at low per-query cost.

## Known failure modes

- Invalid or non-existent ticker symbol returns empty results or an error
- Limit value outside the 5-50 range may be rejected or clamped
- No recent filings for a given ticker returns an empty list
- Payment failure via x402 prevents data access
- API may have a delay in reflecting the most recent SEC filings

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a list of recent insider trade records sourced from SEC Form 4 filings, including details such as the filer's name and role, the company ticker, transaction type (buy/sell), number of shares, price per share, and transaction date. Results are filtered by ticker if provided, or cover recent market-wide filings if no ticker is specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "optional int 5-50"
  },
  "ticker": {
   "type": "string",
   "description": "optional stock ticker e.g. AAPL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-insider-trades-620b9961/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
