# SEC EDGAR Filings Lookup by Ticker

> SEC EDGAR Filings Lookup by Ticker is a paid API for AI agents from 2s.io, paid per call via x402, $0.0036/call, status unknown (last checked 2026-09-15).

Fetches recent SEC EDGAR filings for a US public company by stock ticker, with optional filtering by form type

## Facts

- Endpoint: GET https://2s.io/api/finance/sec-filings
- Price: $0.0036/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-b2e1da29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R1a_HxCLg0ScLGNKLdDFc

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 2s-io-b2e1da29
```

Example prompt: Pull the 5 most recent 10-K annual report filings from SEC EDGAR for MSFT, including filing dates, accession numbers, and links to the primary documents.

## When to prefer this

Use this endpoint when you need structured SEC filing metadata for a US public company identified by stock ticker, especially when you need to filter by a specific form type (10-K, 10-Q, 8-K, S-1, 13F-HR, etc.). Prefer this over general web search for regulatory filings because it returns structured, machine-readable metadata with direct document URLs. For parsed financial metrics from XBRL data, use the sibling XBRL endpoint instead.

## Known failure modes

- Unknown or invalid ticker symbol — SEC company_tickers.json has no match, returns error or empty result
- Unsupported or misspelled formType string results in zero filings returned
- limit parameter out of range (below 1 or above 100) triggers validation error
- SEC EDGAR data.sec.gov upstream unavailable causes timeout or 5xx error
- Very new or recently delisted tickers may not resolve correctly

## How this service works

Recent SEC EDGAR filings for a US publicly-traded company by stock ticker. Resolves ticker → CIK via SEC's company_tickers.json, then fetches the company's submissions index from data.sec.gov. Returns company metadata (name, CIK, SIC industry classification, exchanges, fiscal year-end, state of incorporation) plus filings with form type, filing date, report date, accession number, primary-document URL, and filing-index URL. Filter to one form type (10-K, 10-Q, 8-K, 4, 13F-HR, SC 13G, S-1, etc.) via formType param. Default 20 results, max 100. Backed by SEC.gov; underlying filings are public-domain US government records. For filings + fundamentals + insider trades merged by ticker in one call, see /api/finance/company-profile.

## Output

Returns company metadata (name, CIK, SIC classification, exchanges, fiscal year-end, state of incorporation) plus a list of filings each containing form type, filing date, report date, accession number, a direct URL to the primary document, and a filing index URL. Filtered to the requested form type if specified.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 5,
   "ticker": "MSFT",
   "formType": "10-K"
  }
 }
}
```

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "ticker"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "minimum": 1,
       "description": "Max filings to return."
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol (case-insensitive), e.g. AAPL, GOOGL, BRK.B."
      },
      "formType": {
       "type": "string",
       "description": "Optional filter to one SEC form type, e.g. 10-K, 10-Q, 8-K, 13F-HR, 4, S-1."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-b2e1da29/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
