# x402stock SEC Form 3 Initial Insider Holdings

> x402stock SEC Form 3 Initial Insider Holdings is a paid API for AI agents from agents.x402stock.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns parsed initial beneficial-ownership holdings from SEC Form 3 filings for a given stock ticker, showing what insiders owned at the moment they first became a director, officer, or 10% holder.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/form-3/:ticker
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-sec-form-3-initial-insider-holdings-b9b74609
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6OC-bRDLLdiAuRoqhHE8F

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 x402stock-sec-form-3-initial-insider-holdings-b9b74609
```

Example prompt: Pull the last 10 SEC Form 3 initial insider ownership filings for NVDA — I want to see what shares and securities each new director or officer declared when they first joined.

## When to prefer this

Use this endpoint when you need the initial ownership baseline that an insider declared upon becoming a director, officer, or 10% shareholder — i.e., the starting point before any Form 4 transactions. It complements Form 4 data by establishing what insiders held at inception. Prefer this over general SEC filing endpoints when you specifically need Form 3 data rather than ongoing transaction history.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result set
- Ticker with no Form 3 filings on record returns an empty array
- Limit parameter outside allowed range (must be 1–25) returns a validation error
- SEC EDGAR source unavailability may cause delayed or failed responses
- Network or payment (x402/USDC) failure prevents the request from completing

## How this service works

Initial beneficial-ownership holdings parsed from SEC Form 3 filings, the first report an insider files on becoming a director, officer, or 10% holder. Each holding carries the security, shares owned, direct or indirect ownership, and derivative terms. Complements Form 4 transactions. ?limit= filings (default 5). Sourced from SEC EDGAR. From x402stock, a market & economic data API (x402, USDC).

## Output

A list of parsed Form 3 filings (up to the requested limit, default 5, max 25), each containing the reporting insider's identity, the security name, number of shares owned, whether ownership is direct or indirect, and any derivative instrument terms such as options or warrants. Data is sourced directly from SEC EDGAR.

## 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"
    },
    "pathParams": {
     "type": "object",
     "ticker": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 5,
       "maximum": 25,
       "exclusiveMinimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-sec-form-3-initial-insider-holdings-b9b74609/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.x402stock.xyz](https://www.zero.xyz/host/agents.x402stock.xyz/llms.txt)
