# SEC EDGAR Filings Lookup by Ticker

> SEC EDGAR Filings Lookup by Ticker is a paid API for AI agents from api.omninexu.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Retrieves SEC EDGAR filings (10-K, 10-Q, 8-K, and more) for any US-listed company by stock ticker, returning filing dates and direct sec.gov source URLs.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/filings
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-filings-lookup-by-ticker-8819fc68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pUzxAwVvDAPAIvpbMr_08

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-by-ticker-8819fc68
```

Example prompt: Can you pull up all the SEC EDGAR filings for Tesla — I want to see the 10-K, 10-Q, and any 8-K material event filings with links back to the actual sec.gov documents?

## When to prefer this

Use this endpoint when you need official SEC regulatory filings — 10-K annual reports, 10-Q quarterly reports, 8-K material event disclosures — for any US-listed public company. Prefer this over financial data APIs when the requirement is authoritative source documents with direct sec.gov links rather than processed financial metrics.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- OTC or foreign-listed companies not on major US exchanges may not be found
- Rate limiting or payment failure returns 402 Payment Required
- Network timeout if SEC EDGAR upstream is slow
- Ticker longer than 5 characters or empty string rejected by schema validation

## How this service works

SEC EDGAR filings for any US-listed company — 10-K annual reports, 10-Q quarterly reports, 8-K material events, and more. Ticker lookup with direct sec.gov source URLs and filing dates. All US-listed companies. Real SEC EDGAR data, not mock.

## Output

A list of SEC EDGAR filings for the requested ticker including filing type (10-K, 10-Q, 8-K, etc.), filing date, and direct URLs to the original documents on sec.gov.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "maxLength": 5,
       "minLength": 1,
       "description": "US stock ticker (AAPL, TSLA, MSFT). Any US-listed company."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-filings-lookup-by-ticker-8819fc68/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.omninexu.com](https://www.zero.xyz/host/api.omninexu.com/llms.txt)
