# Script Master Labs — Insider Trades API

> Script Master Labs — Insider Trades API is a paid API for AI agents from mcp-x402.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves U.S. congressional or corporate insider trading disclosures for a given stock ticker, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://mcp-x402.onrender.com/x402/insider-trades
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/script-master-labs-insider-trades-api-74a48857
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hYUZncPb5KcoODUxywbI3

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 script-master-labs-insider-trades-api-74a48857
```

Example prompt: Pull the insider trades for NVDA from the last 30 days — show me up to 20 results so I can see if executives or politicians have been buying or selling.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-call access to U.S. insider or congressional trading data for a specific stock ticker without a subscription, especially in an autonomous agent context where x402 micropayment settlement on Base (USDC) is already supported.

## Known failure modes

- Missing required 'ticker' parameter returns a 400 or validation error
- Unknown or invalid ticker symbol may return an empty result set
- Payment not settled (x402 flow incomplete) results in a 402 Payment Required response
- Rate limiting or server overload on the Render-hosted service may return 429 or 503
- Very long lookback periods with high limits may time out on the Render free tier

## How this service works

Pay-per-call crypto, RWA, federal, SEC, Section 8/HUD housing, and compliance APIs via x402. Primary: USDC on Base (eip155:8453). Also accepts Global Dollar (USDG) on Robinhood Chain (eip155:4663) via sovereign X-PAYMENT-TX. Hyphen routes only (e.g. /x402/gas-tracker, /x402/pha-lookup, /x402/sec-8k). MARKETPLACE REVIEW: use free /x402/playground/* (no key, no payment). Production /x402/* returns 402 unless paid via x402 or X-Api-Market-Key / X-API-Key from seller dashboard.

## Output

A list of insider or congressional trade records for the specified ticker, including filer names, trade dates, transaction types (buy/sell), and amounts, filtered to the requested time window and capped at the specified result limit.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "default": 30,
       "maximum": 90,
       "minimum": 1,
       "description": "Lookback window in days."
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 25,
       "minimum": 1
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol (required). e.g. TSLA, AMC, GME."
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/script-master-labs-insider-trades-api-74a48857/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp-x402.onrender.com](https://www.zero.xyz/host/mcp-x402.onrender.com/llms.txt)
