# SEC Filings Today API

> SEC Filings Today API is a paid API for AI agents from agentsapi.top, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns today's latest SEC EDGAR filings (10-K, 10-Q, 8-K) with company name, CIK, form type, filing date, and EDGAR URL

## Facts

- Endpoint: GET https://agentsapi.top/api/filings/today
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-filings-today-api-14777766
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bL26s1x1fzAZH7eQfiW30

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-filings-today-api-14777766
```

Example prompt: Can you pull today's SEC EDGAR filings and show me which companies submitted 10-K, 10-Q, or 8-K forms today, along with their CIK numbers and links to the actual filings?

## When to prefer this

Choose this endpoint when you need a quick, pre-aggregated feed of today's SEC EDGAR filings without scraping EDGAR directly. It is ideal for daily monitoring workflows, morning briefings, or compliance dashboards that need 10-K, 10-Q, and 8-K filings in a structured JSON format. Prefer it over building a custom EDGAR scraper when low-cost, pay-per-request access ($0.01 USDC) is acceptable and you only need today's filings rather than historical data.

## Known failure modes

- No filings available yet if called very early in the trading day before EDGAR has processed submissions
- HTTP 402 if payment is not negotiated correctly via x402 protocol
- Stale or empty results on non-trading days (weekends, market holidays) when few or no filings are submitted
- Network timeouts if EDGAR upstream is slow or unavailable
- Possible incomplete filing list if EDGAR indexing is delayed

## How this service works

Pay-per-request SEC EDGAR daily filings feed for AI agents. Latest 10-K / 10-Q / 8-K filings with company name, CIK, form type, filing date and EDGAR URL. Payment: $0.01 USDC via x402 (HTTP 402 auto-negotiated).

## Output

Returns a JSON object with a count of today's filings, the source label ('SEC EDGAR'), a generatedAt timestamp, and an array of filing objects each containing the form type (e.g. 10-K, 10-Q, 8-K), company title with CIK, filing date in ISO 8601 format, and a direct EDGAR archive URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "source": "SEC EDGAR",
  "filings": [
   {
    "link": "https://www.sec.gov/Archives/edgar/data/1234567/000123456726000001/",
    "type": "10-Q",
    "title": "ACME CORP (CIK 0001234567)",
    "filingDate": "2026-09-09T10:00:00Z"
   }
  ],
  "generatedAt": "2026-09-09T12:00:00Z"
 }
}
```

## More

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