# finance.toon.haus Insider Transactions

> finance.toon.haus Insider Transactions is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns insider trading transactions (buys, sells, option exercises) and sentiment for a given stock

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/insiders
- 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/finance-toon-haus-209b5d5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kTOVtgmaoIrACRTFV5NzF

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 finance-toon-haus-209b5d5a
```

Example prompt: Show me the latest insider transactions for TSLA — I want to see whether executives are buying or selling shares and what the overall insider sentiment looks like.

## When to prefer this

Use this endpoint when you need insider trading activity and sentiment for a specific stock — particularly when evaluating whether company executives and directors are net buyers or sellers, which is a strong signal for fundamental equity research and investment decisions.

## Known failure modes

- Missing or invalid ticker symbol returns an error or empty result
- Unknown ticker not in coverage universe returns empty or 404
- Rate limiting or payment failure (402) if x402 credit is insufficient
- Stale data if insider filings haven't been processed recently

## How this service works

Insider transactions (P=buy,S=sell,M=exercise) + sentiment

## Output

A list of insider transactions for a given stock, including transaction type codes (P=buy, S=sell, M=exercise), details about each transaction, and an aggregated insider sentiment signal indicating whether insiders are net bullish or bearish.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-209b5d5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
