# SEC EDGAR Filings Lookup (10-K, 10-Q, 8-K)

> SEC EDGAR Filings Lookup (10-K, 10-Q, 8-K) is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches the latest SEC EDGAR filings (10-K annual, 10-Q quarterly, 8-K material event reports) for any US-listed company by stock ticker or CIK, sourced live from data.sec.gov.

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_edgar_apitoll_cloud
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-filings-lookup-10-k-10-q-8-k-036ebf6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q1Y5xCVtVF8axJ0g9s7ZO

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-edgar-filings-lookup-10-k-10-q-8-k-036ebf6f
```

Example prompt: Pull the last 3 10-K annual reports filed by TSLA on SEC EDGAR, including any amendments, filed since 2021-01-01.

## When to prefer this

Use this endpoint when you need live, structured SEC filing data for US-listed companies and want automatic ticker-to-CIK resolution without building your own EDGAR scraper. Prefer it over raw EDGAR API calls when you want parsed, normalized output with date filtering and amendment surfacing in a single call.

## Known failure modes

- Unknown or invalid ticker returns an error — ticker must be a valid US-listed stock symbol
- CIK not found if the 10-digit number doesn't match any SEC registrant
- Providing both ticker and CIK simultaneously is rejected (XOR constraint)
- Requesting a form type not in the allowed enum (10-K, 10-Q, 8-K) returns a validation error
- 'since' date older than 5 years may return no results or be rejected
- Payment failure (x402) if USDC balance is insufficient for the $0.003 fee

## How this service works

Latest SEC EDGAR filings for any US-listed company by stock ticker or CIK: 10-K annual reports, 10-Q quarterly reports, and 8-K material events. Resolves ticker to CIK via SEC's official index and returns the parsed filing (company, form type, dated items). Sourced live from data.sec.gov.

## Output

Returns a structured JSON object containing the resolved company identity (CIK, ticker), the requested form type, a count of matching filings, an array of parsed filing items (dates, form type, metadata), source attribution to data.sec.gov, and optional truncation info if results were capped.

## 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": [
      "form"
     ],
     "properties": {
      "cik": {
       "type": "string",
       "pattern": "^\\d{1,10}$",
       "description": "SEC CIK (1-10 digits). XOR with ticker."
      },
      "form": {
       "enum": [
        "10-K",
        "10-Q",
        "8-K"
       ],
       "type": "string",
       "description": "SEC form for /filings: 10-K, 10-Q, 8-K. Aliases accepted (10k, 10-q, 8k, annual, quarterly, current-report, material-event). Form 4 and 13F-HR have their own routes — GET /v1/edgar/insider and GET /v1/edgar/holdings."
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1,
       "description": "Per-form ceiling: 10-K/10-Q/8-K=50."
      },
      "since": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Inclusive lower bound on filingDate (YYYY-MM-DD), within the last 5 years."
      },
      "ticker": {
       "type": "string",
       "pattern": "^[A-Za-z.\\-]{1,10}$",
       "description": "Stock ticker, case-insensitive. XOR with cik."
      },
      "includeAmendments": {
       "type": "boolean",
       "description": "When true (default), amendment suffixes (10-K/A) surface alongside the base form."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "form": {
       "enum": [
        "10-K",
        "10-Q",
        "8-K"
       ],
       "type": "string"
      },
      "meta": {
       "type": "object"
      },
      "count": {
       "type": "integer"
      },
      "items": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "source": {
       "type": "object"
      },
      "resolved": {
       "type": "object"
      },
      "truncation": {
       "type": [
        "object",
        "null"
       ]
      },
      "appliedSince": {
       "type": [
        "string",
    
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-filings-lookup-10-k-10-q-8-k-036ebf6f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
