# TickersFeed SEC Filings API

> TickersFeed SEC Filings API is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Retrieves recent SEC filings (10-K, 10-Q, 8-K) for any US-listed stock ticker, powered by EDGAR data

## Facts

- Endpoint: GET https://api.tickersfeed.net/sec/AAPL/filings
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-sec-filings-api-266a3653
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QDzFVNz8iZo_PTTFfZOBr

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 tickersfeed-sec-filings-api-266a3653
```

Example prompt: Pull the last 5 SEC filings for TSLA from EDGAR — specifically 10-K and 10-Q forms — so I can review their recent annual and quarterly reports.

## When to prefer this

Use this endpoint when you need structured, dated SEC filing records for US-listed companies directly from EDGAR — especially when you need to filter by specific form type (10-K annual, 10-Q quarterly, 8-K current events) or need machine-readable filing metadata rather than full document text.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error response
- Unsupported form type filter may return no results
- Limit exceeding 50 is capped or rejected
- EDGAR data lag may mean very recent filings are not yet indexed
- Non-US stocks have no SEC filings and will return empty results

## How this service works

Recent SEC filings (10-K, 10-Q, 8-K) for any US stock. Powered by EDGAR. $0.003 USDC per call.

## Output

Returns a JSON object with the stock's CIK number, ticker symbol, total count of filings, and an array of filing records each containing the form type (10-K, 10-Q, 8-K), filing date, and a short description of the filing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string",
   "description": "Filter by form type (10-K, 10-Q, 8-K)"
  },
  "limit": {
   "type": "number",
   "description": "Max results, up to 50 (default 20)"
  },
  "symbol": {
   "type": "string",
   "description": "Stock ticker symbol (e.g. AAPL, TSLA)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "cik": "0000320193",
 "count": 1,
 "symbol": "AAPL",
 "filings": [
  {
   "form": "10-K",
   "filingDate": "2025-11-01",
   "description": "Annual report"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-sec-filings-api-266a3653/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
