# x402stock SEC Disclosure Dossier

> x402stock SEC Disclosure Dossier is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.05/call, status unknown (last checked 2026-09-12).

Returns a combined SEC disclosure snapshot for a US-listed company: filings index, Form 4 insider transactions with net buy/sell signal, material 8-K events by item code, and Form 3 initial holdings — all resolved from a single CIK lookup.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/dossier/{ticker}
- Price: $0.05/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-x402stock-sec-disclosure-dossier-0e8d5513
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9E_aJAroxZj-EwvBYgzI7

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 agents-x402stock-xyz-x402stock-sec-disclosure-dossier-0e8d5513
```

Example prompt: Can you pull the full SEC disclosure dossier for TSLA — I want to see recent filings, insider buy/sell activity from Form 4, any material 8-K events, and Form 3 initial holdings all in one shot?

## When to prefer this

Choose this endpoint when you need a comprehensive SEC disclosure overview for a company in a single call rather than making four separate requests. It is especially valuable when you want insider trading sentiment (net buy/sell), material event history, and initial holdings together for due diligence, portfolio monitoring, or investment research. Prefer it over individual SEC endpoints when cost efficiency and speed matter, since the CIK is resolved once and shared.

## Known failure modes

- Ticker not found or not mapped to a CIK — returns error or null sections
- One or more sections (e.g. Form 3, 8-K) may return null if no recent filings exist
- SEC EDGAR rate limits or downtime can cause partial or failed responses
- Invalid ticker format (lowercase or non-US) may fail resolution
- Truncated response schema may omit edge-case fields for some filers

## How this service works

A company's recent SEC disclosure picture in one call: the filings index, insider transactions from Form 4 with a net buy/sell signal, material 8-K events by item code, and initial holdings from Form 3. The CIK is resolved once and shared across sections (faster than four separate calls), at a lower combined price. From SEC EDGAR; sections degrade independently. From x402stock

## Output

A JSON object containing: the filings index listing recent SEC submissions; parsed Form 4 insider transactions with a net buy/sell signal; material 8-K events categorized by item code; and Form 3 initial ownership holdings including owner identity, security type, share count, and direct/indirect ownership. All sections share a single resolved CIK. Sections degrade independently if data is unavailable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string",
   "description": "US-listed ticker symbol (uppercase), e.g. AAPL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker",
  "source",
  "as_of",
  "sections",
  "filings",
  "insider_trades",
  "material_events",
  "form_3"
 ],
 "properties": {
  "as_of": {
   "type": "string"
  },
  "form_3": {
   "anyOf": [
    {
     "type": "object",
     "required": [
      "ticker",
      "data",
      "source",
      "as_of"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "filings_parsed",
        "holding_count",
        "holdings"
       ],
       "properties": {
        "holdings": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "owner_name",
           "is_director",
           "is_officer",
           "officer_title",
           "is_ten_percent_owner",
           "filing_date",
           "accession",
           "url",
           "security",
           "shares",
           "direct_or_indirect",
           "nature_of_ownership",
           "is_derivative",
           "exercise_price",
           "exercise_date",
           "expiration_date",
           "underlying_security",
           "underlying_shares"
          ],
          "properties": {
           "url": {
            "type": "string"
           },
           "shares": {
            "anyOf": [
             {
              "type": "number"
             },
             {
              "type": "null"
             }
            ]
           },
           "security": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "accession": {
            "type": "string"
           },
           "is_officer": {
            "type": "boolean"
           },
           "owner_name": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "filing_date": {
            "type": "string"
           },
           "is_director": {
            "type": "boolean"
           },
           "exercise_date": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "is_derivative": {
            "type": "boolean"
           },
           "officer_title": {
            "anyOf": [
             {
              "type": "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-x402stock-xyz-x402stock-sec-disclosure-dossier-0e8d5513/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)
