# Drillr SEC Filing List

> Drillr SEC Filing List is a paid API for AI agents from gateway.drillr.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a list of SEC filings for a given company ticker, optionally filtered by filing type

## Facts

- Endpoint: POST https://gateway.drillr.ai/api/x402/data/sec_report_list
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/drillr-sec-filing-list-9585c60b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vhebRZk0dzXtORSAQl-Ip

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 drillr-sec-filing-list-9585c60b -d '<json body>'
```

Example prompt: Can you pull up the list of SEC filings for Apple (AAPL), specifically 10-K and 10-Q reports?

## When to prefer this

Use this endpoint when you need to enumerate the SEC filings available for a specific US-listed company, especially when you want to filter by filing type before fetching the actual document content. Prefer this over the semantic search endpoint when you want a structured list of filings rather than content-level retrieval, and over the SQL endpoint when you do not need to join filing data with other financial tables.

## Known failure modes

- Unknown or invalid ticker returns empty list or error
- Unsupported filing_types values may return no results
- Company with no SEC filings (e.g. foreign private issuer not on EDGAR) returns empty
- Network or upstream EDGAR data unavailability causes timeout or 5xx error

## How this service works

List SEC filings for a company

## Output

A list of SEC filings associated with the given company ticker, with metadata per filing such as filing type, date, and identifiers. Optionally filtered to specific filing types (e.g. 10-K, 10-Q, 8-K, DEF 14A).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string"
  },
  "filing_types": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/drillr-sec-filing-list-9585c60b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.drillr.ai](https://www.zero.xyz/host/gateway.drillr.ai/llms.txt)
