# SEC Filings Index

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

Retrieves metadata for SEC EDGAR filings including form types, filing dates, and links to source documents, filterable by company ticker or CIK.

## Facts

- Endpoint: GET https://agent.massive.com/stocks/filings/vX/index
- 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/sec-filings-index-814dc111
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mk7396pOmm0xx2t5k9555

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 sec-filings-index-814dc111
```

Example prompt: Pull the 10 most recent 10-K annual filings for Tesla (ticker: TSLA) from the SEC EDGAR index, sorted by filing date descending.

## When to prefer this

Choose this endpoint when you need to discover and index SEC filings by company (via ticker or CIK) or form type, especially when you want filterable, sortable metadata including filing dates and document links. Prefer this over direct SEC EDGAR queries when you need a clean, agent-friendly API with structured filtering and x402 micropayment support. Best for agents that need to enumerate or monitor filing activity rather than parse the full document content.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results
- Malformed CIK format causes validation error
- Requesting more than 10,000 results exceeds maximum limit and returns error
- Invalid form_type value returns no matching filings
- Date filter syntax errors return 400 bad request
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

SEC EDGAR master index providing metadata for all SEC filings including form types, filing dates, and direct links to source documents. Can't find what you're looking for? POST feedback to /feedback, no charge.

## Output

Returns a paginated list of SEC filing records, each including the company's CIK, ticker symbol, form type (e.g. 10-K, 10-Q, 8-K), filing date, and direct links to the source documents on SEC EDGAR. Results can be sorted and filtered by company identifiers, form type, and date ranges.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC Central Index Key (CIK) identifying the filing entity."
      },
      "sort": {
       "type": "string",
       "default": "filing_date.desc",
       "description": "A comma separated list of sort columns. For each column, append '.asc' or '.desc' to specify the sort direction. The sort column defaults to 'filing_date' if not specified. The sort order defaults to 'desc' if not specified."
      },
      "limit": {
       "type": "integer",
       "default": 1000,
       "maximum": 10000,
       "minimum": 1,
       "description": "Limit the maximum number of results returned. Defaults to '1000' if not specified. The maximum allowed limit is '10000'."
      },
      "cik.gt": {
       "type": "string",
       "description": "Filter greater than the value."
      },
      "cik.lt": {
       "type": "string",
       "description": "Filter less than the value."
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol for the filing entity, if available."
      },
      "cik.gte": {
       "type": "string",
       "description": "Filter greater than or equal to the value."
      },
      "cik.lte": {
       "type": "string",
       "description": "Filter less than or equal to the value."
      },
      "form_type": {
       "type": "string",
       "description": "SEC form type (e.g., '10-K', '10-Q', '8-K', 'S-1', '4', etc.)."
      },
      "ticker.gt": {
       "type": "string",
       "description": "Filter greater than the value."
      },
      "ticker.lt": {
       "type": "string",
       "description": "Filter less than the value."
      },
      "cik.any_of": {
       "type": "string",
       "description": "Filter equal to any of the values. Multiple values can be specified by using a comma separated list."
      },
      "ticker.gte": {
       "type": "string",
       "description": "Filter greater than or equal to the value."
      },
      "ticker.lte": {
       "type": "string",
       "description": "Filter less 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "OK",
  "results": [
   {
    "cik": "0000320193",
    "ticker": "AAPL",
    "form_type": "10-K",
    "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/0000320193-25-000079.txt",
    "filing_date": "2025-10-31",
    "issuer_name": "Apple Inc.",
    "accession_number": "0000320193-25-000079"
   },
   {
    "cik": "0000789019",
    "ticker": "MSFT",
    "form_type": "10-Q",
    "filing_url": "https://www.sec.gov/Archives/edgar/data/789019/0000950170-25-010491.txt",
    "filing_date": "2025-01-29",
    "issuer_name": "MICROSOFT CORP",
    "accession_number": "0000950170-25-010491"
   }
  ],
  "next_url": "https://api.massive.com/stocks/filings/vX/index?cursor=eyJsaW1pd...",
  "request_id": "1daccfd9794e482e96d104dee6ed432b"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-filings-index-814dc111/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.massive.com](https://www.zero.xyz/host/agent.massive.com/llms.txt)
