# x402stock SEC EDGAR Filings Index

> x402stock SEC EDGAR Filings Index is a paid API for AI agents from agents.x402stock.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a list of a company's recent SEC EDGAR filings by ticker symbol, with form type, filing/report dates, 8-K item codes, and direct document links, filterable by form type and count.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/filings/:ticker
- Price: $0.01/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-edgar-filings-index-30d4da19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KUiOchno8tARhqposM0E-

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-edgar-filings-index-30d4da19
```

Example prompt: Pull the last 10 SEC filings for NVDA from x402stock — I want to see the form types, filing dates, and links to each primary document.

## When to prefer this

Use this endpoint when you need a navigable index of a public company's SEC filings before fetching or summarizing a specific document. Prefer it over direct SEC EDGAR web scraping for structured, agent-ready output with direct document links. Best as a first step in a disclosure research workflow — retrieve the filing list, then fetch individual documents by their URLs.

## Known failure modes

- Invalid or unknown ticker symbol returns an empty list or 404
- Requested form type filter yields no results if company hasn't filed that form
- Rate limiting or payment failure returns 402 requiring USDC payment
- SEC EDGAR upstream unavailability may cause delayed or failed responses
- Limit parameter exceeding 100 returns a validation error

## How this service works

List a company's recent SEC EDGAR filings sourced directly from the SEC: form type, filing and report dates, the 8-K item codes, and a direct link to each primary document. Filter to a single form with `?type=10-K` (also 10-Q, 8-K, 4, etc.) and cap with `?limit=`. Use as the index into a company's disclosures before fetching or summarizing a specific filing. From x402stock

## Output

A structured list of recent SEC EDGAR filings for the requested ticker, each entry containing the form type (e.g. 10-K, 10-Q, 8-K, 4), filing date, report period date, any 8-K item codes, and a direct URL to the primary filing document on 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": {
      "type": {
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "exclusiveMinimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-sec-edgar-filings-index-30d4da19/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)
