# 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 stock ticker, powered by EDGAR.

## Facts

- Endpoint: GET https://api.tickersfeed.net/sec/CRCL/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-e1e3df74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lQ8FiOWixT-UMllP8VgK5

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-e1e3df74
```

Example prompt: Pull the last 5 SEC filings for AAPL from EDGAR — specifically any 10-K or 10-Q forms filed recently.

## When to prefer this

Use this endpoint when you need structured, filterable SEC filing data (10-K, 10-Q, 8-K) for a US-listed company and want EDGAR-sourced results with a simple per-call pricing model. Prefer over scraping EDGAR directly when you need clean JSON responses without parsing HTML.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or error
- Unsupported form type filter returns no results
- Limit exceeding 50 is clamped or returns an error
- EDGAR upstream outage causes delayed or failed responses
- Missing required symbol parameter causes a 400-level error

## 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 containing the company's CIK number, stock symbol, total count of results, and an array of filings each with form type (e.g. 10-K, 10-Q, 8-K), filing date, and a description of the filing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "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)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-sec-filings-api-e1e3df74/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)
