# SEC EDGAR Watcher

> SEC EDGAR Watcher is a paid API for AI agents from api.timzinin.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches recent SEC EDGAR filings for a given company ticker or CIK, returning filing counts, dates, form types, and direct document URLs

## Facts

- Endpoint: POST https://api.timzinin.com/api/sec-edgar-watcher
- 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/sec-edgar-watcher-a238cad2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iEujYdIW6JosdBqjCMjSg

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-watcher-a238cad2 -d '<json body>'
```

Example prompt: Can you check EDGAR for me and tell me how many SEC filings NVIDIA has made in the last 180 days, and show me the most recent ones with their form types and dates?

## When to prefer this

Use this endpoint when you need programmatic, structured access to SEC EDGAR filing data for a specific public company — especially for monitoring recent activity, counting filings in a time window, or obtaining direct document URLs for downstream processing. Prefer this over manual EDGAR searches when building automated compliance monitors, investment research pipelines, or insider-trading alert systems. It is particularly well-suited for agents that need to react to new filings in near-real-time at low per-call cost ($0.01 USDC).

## Known failure modes

- Unknown ticker or CIK returns found:false with empty filings array
- Malformed ticker input may return a 400 or empty result
- SEC EDGAR rate limiting or downtime may cause elevated run_ms or timeout
- Very new companies with no filings return filingsCount:0
- Payment failure (x402) blocks the request before any EDGAR lookup occurs

## How this service works

Pay-per-call data & tool APIs

## Output

Returns a JSON object with a metadata block (run time in ms, settlement status, item count) and a results array. Each result includes the company CIK, ticker, company name, a human-readable summary, a timestamp of when the check ran, a total filing count for the lookback period, and an array of recent filings — each with a direct SEC.gov document URL, form type, filing date, accession number, and primary document filename.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tickers": {
   "type": "array",
   "maxItems": 100
  },
  "formTypes": {
   "type": "array",
   "maxItems": 30
  },
  "sinceDays": {
   "type": "integer",
   "maximum": 3650,
   "minimum": 1
  },
  "maxConcurrency": {
   "type": "integer",
   "maximum": 10,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "cik": "0001045810",
    "found": true,
    "ticker": "NVDA",
    "company": "NVIDIA CORP",
    "summary": "NVIDIA CORP (NVDA) — 79 filings in the last 180 day(s), most recent SCHEDULE 13G on 2026-07-20.",
    "checkedAt": "2026-07-26T13:27:57.243Z",
    "filingsCount": 79,
    "recentFilings": [
     {
      "url": "https://www.sec.gov/Archives/edgar/data/1045810/000104581026000062/xslSCHEDULE_13G_X01/primary_doc.xml",
      "form": "SCHEDULE 13G",
      "filedAt": "2026-07-20",
      "accessionNumber": "0001045810-26-000062",
      "primaryDocument": "xslSCHEDULE_13G_X01/primary_doc.xml"
     },
     {
      "url": "https://www.sec.gov/Archives/edgar/data/1045810/000131026426000002/xslF345X06/wk-form3_1784149389.xml",
      "form": "3",
      "filedAt": "2026-07-15",
      "accessionNumber": "0001310264-26-000002",
      "primaryDocument": "xslF345X06/wk-form3_1784149389.xml"
     },
     {
      "url": "https://www.sec.gov/Archives/edgar/data/1045810/000119764726000005/xslF345X06/wk-form4_1783371701.xml",
      "form": "4",
      "filedAt": "2026-07-06",
      "accessionNumber": "0001197647-26-000005",
      "primaryDocument": "xslF345X06/wk-form4_1783371701.xml"
     },
     "…"
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-watcher-a238cad2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.timzinin.com](https://www.zero.xyz/host/api.timzinin.com/llms.txt)
