# fittings SEC Company Filings

> fittings SEC Company Filings is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00496/call, status unknown (last checked 2026-09-14).

Retrieves the most recent SEC filings for a US registrant by ticker or CIK, including form type, dates, item numbers, and document URLs.

## Facts

- Endpoint: GET https://fittings.sh/v1/sec/company-filings
- Price: $0.00496/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-sec-company-filings-3cd99965
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zf5A9sfFS4JGvzKn5JM2I

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 fittings-sec-company-filings-3cd99965
```

Example prompt: Pull the 10 most recent SEC filings for Tesla — ticker TSLA — and show me the form types, filing dates, and document URLs, filtering to just 10-K and 8-K forms.

## When to prefer this

Choose this endpoint when you need structured, machine-readable SEC filing metadata including document URLs for a US public company, especially when you know the ticker or CIK and want to filter by specific form types like 10-K or 8-K. Prefer over scraping EDGAR directly or using full-text search APIs when you want a clean, paginated list of recent filings with direct document links.

## Known failure modes

- Invalid or unknown ticker returns an error or empty results
- CIK not found in EDGAR returns no results
- Form type filter with no matching filings returns an empty list
- Both ticker and CIK omitted returns a validation error
- Limit outside 1-50 range returns a parameter error
- SEC EDGAR service unavailability causes upstream timeout

## How this service works

Most recent SEC filings for a US registrant by ticker or CIK, with form type, dates, item numbers and document URLs.

## Output

Returns a list of the most recent SEC filings for the specified registrant, each including form type (e.g. 10-K, 8-K), filed and accepted dates, report date, item numbers, and direct URLs to the filing documents on EDGAR. Results are ordered by recency and limited to the requested count (default 10, max 50).

## 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",
     "required": [],
     "properties": {
      "cik": {
       "type": "string",
       "description": "Company CIK, bare or zero-padded. Supply this or ticker."
      },
      "forms": {
       "type": "string",
       "description": "Optional comma-separated form filter, e.g. 10-K,8-K"
      },
      "limit": {
       "type": "number",
       "description": "1-50, default 10"
      },
      "ticker": {
       "type": "string",
       "description": "Exchange ticker, e.g. AAPL. Supply this or cik."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-sec-company-filings-3cd99965/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
