# SEC EDGAR Filings Index by Ticker

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

Lists a US-listed company's recent SEC EDGAR filings with form type, filing/report dates, 8-K item codes, and a direct link to each primary document.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/filings/{ticker}
- Price: $0.01/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-sec-edgar-filings-index-by-ticker-ec319a5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ciEPM7jYipZHnvEKFu-lK

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-sec-edgar-filings-index-by-ticker-ec319a5f
```

Example prompt: Pull the 10 most recent SEC EDGAR filings for NVDA — I want to see the form types, filing dates, and links to the primary documents.

## When to prefer this

Use this endpoint when you need an indexed list of a company's SEC filings before fetching or summarizing a specific document — it acts as the discovery layer. Prefer it over direct SEC EDGAR searches when you want structured JSON output with direct document links and 8-K item codes without parsing SEC's own HTML. Especially useful for agents that need to programmatically navigate a company's disclosure history filtered by form type (10-K, 10-Q, 8-K, Form 4, etc.).

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty filings array
- Unsupported form type filter returns no results rather than an error
- limit parameter out of range (<=0 or >100) results in a validation error
- Network or upstream SEC EDGAR unavailability causes a 5xx response
- Ticker exists but company has no filings of the requested type returns count=0

## 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 JSON object containing the company's CIK, full legal name, total filing count, and an array of filings each with: form type, accession number, filing date, report date, 8-K item codes (if applicable), a human-readable description, the primary document filename, and a direct SEC.gov URL to that document. Also includes the data source (sec_edgar) and an as_of timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "type": {
   "type": "string"
  },
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 100,
   "exclusiveMinimum": 0
  },
  "ticker": {
   "type": "string",
   "description": "US-listed ticker symbol (uppercase), e.g. AAPL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker",
  "data",
  "source",
  "as_of"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "cik",
    "company",
    "count",
    "filings"
   ],
   "properties": {
    "cik": {
     "type": "string"
    },
    "count": {
     "type": "number"
    },
    "company": {
     "type": "string"
    },
    "filings": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "form",
       "accession",
       "filing_date",
       "report_date",
       "description",
       "items",
       "primary_document",
       "url"
      ],
      "properties": {
       "url": {
        "type": "string"
       },
       "form": {
        "type": "string"
       },
       "items": {
        "type": "array",
        "items": {
         "type": "string"
        }
       },
       "accession": {
        "type": "string"
       },
       "description": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       },
       "filing_date": {
        "type": "string"
       },
       "report_date": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       },
       "primary_document": {
        "type": "string"
       }
      },
      "additionalProperties": false
     }
    }
   },
   "additionalProperties": false
  },
  "as_of": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "source": {
   "type": "string",
   "const": "sec_edgar"
  },
  "ticker": {
   "type": "string"
  }
 },
 "additionalProperties": false
}
```

## More

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