# Insider & Congressional Trading Signal

> Insider & Congressional Trading Signal is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Fuses SEC Form-4 insider transactions and US House STOCK Act trades into a 0-100 composite signal score with flags for net buying, cluster buys, unusual volume, congressional activity, and disclosure lag for a given ticker and date window.

## Facts

- Endpoint: GET https://api.agentstools.dev/insider/signal
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-congressional-trading-signal-9e8b3945
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eEI8LQMKgS5DncwDAnjiy

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 insider-congressional-trading-signal-9e8b3945
```

Example prompt: What's the insider and congressional trading signal for NVDA over the past 90 days? I want to know the composite score, whether insiders are net buyers, and if any House members have traded it recently.

## When to prefer this

Use this endpoint when you need a pre-computed, fused signal combining both SEC Form-4 insider filings and congressional STOCK Act disclosures in one score, rather than querying raw filings yourself. Prefer it over raw EDGAR scraping when you want normalized flags (cluster buy, unusual volume, congressional activity) with direct transaction references rather than building your own aggregation logic.

## Known failure modes

- Unknown ticker or CIK returns empty or error response
- No transactions in the specified window returns a low/neutral score with no flags set
- Invalid date format for startdt/enddt causes a 400 error
- EDGAR or STOCK Act data source temporarily unavailable causes a 503
- Very recent filings may not yet be indexed, causing disclosure lag to appear higher

## How this service works

Composite deterministic insider and congressional signal for one ticker over a window. Fuses SEC Form-4 insider transactions and US House STOCK Act trades into a 0-100 signal score plus flags: net insider buying, cluster buy across distinct insiders, unusual volume, congressional activity, and average disclosure lag. Each flag references the underlying transactions.

## Output

Returns a 0-100 composite signal score plus boolean flags for: net insider buying, cluster buy (multiple distinct insiders buying), unusual volume, congressional activity, and average disclosure lag. Each flag includes references to the underlying SEC Form-4 and STOCK Act transactions that triggered it.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC EDGAR issuer CIK, any zero-padding accepted"
      },
      "enddt": {
       "type": "string",
       "description": "Window end date, ISO YYYY-MM-DD (default today)"
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol, e.g. AAPL"
      },
      "startdt": {
       "type": "string",
       "description": "Window start date, ISO YYYY-MM-DD (default 90 days ago)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-congressional-trading-signal-9e8b3945/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
