# x402-factory 10-K Annual Report Filing Watch Feed

> x402-factory 10-K Annual Report Filing Watch Feed is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a rolling feed of newly filed 10-K annual report documents from SEC EDGAR, including filer name, filing date, accession number, and direct EDGAR links.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/watch/annual-watch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-10-k-annual-report-filing-watch-feed-8e70bfda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9Wj0A0Q2on2h9S0oWpBWN

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 x402-factory-10-k-annual-report-filing-watch-feed-8e70bfda
```

Example prompt: Pull the latest 10-K annual report filings from SEC EDGAR — give me the 20 most recent ones with the company name, filing date, and a link to each document.

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost, real-time feed of newly filed 10-K documents without needing full document parsing. Ideal for monitoring agents, compliance dashboards, or research pipelines that need to detect new annual report activity quickly. Prefer this over full-parse alternatives when metadata and direct links are sufficient.

## Known failure modes

- Limit parameter out of range (must be 1–50) returns a validation error
- No new filings available may return an empty filings array
- Rate limiting or payment failure returns 402 or 429 error
- EDGAR upstream delays may cause stale or incomplete feed data

## How this service works

New 10-K annual report filings feed (metadata + links) — Rolling feed of newly filed 10-K annual report documents: filer, filing date, accession number, and direct EDGAR links — metadata only, no deep parse. The watch feed for agents tracking 10-K annual report activity.

## Output

A JSON object containing a list of recent 10-K filing records, each with company name, optional ticker symbol, form type, filing date (ISO string), a text snippet, and a direct URL to the EDGAR filing. Also includes metadata about the watch feed and the form types being tracked.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "watch",
        "forms",
        "filings"
       ],
       "properties": {
        "forms": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "watch": {
         "type": "string"
        },
        "filings": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "company",
           "form",
           "filed_at",
           "snippet",
           "url"
          ],
          "properties": {
           "url": {
            "type": "string"
           },
           "form": {
            "type": "string"
           },
           "ticker": {
            "type": "string"
           },
           "company": {
            "type": "string"
           },
           "snippet": {
            "type": "string"
           },
           "filed_at": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "forms": [
    "10-K"
   ],
   "watch": "annual-watch",
   "filings": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/1341439/000134143926000123/orcl-10k2026.htm",
     "form": "10-K",
     "ticker": "ORCL",
     "company": "Oracle Corporation",
     "snippet": "Annual report pursuant to Section 13 for the fiscal year ended May 31, 2026…",
     "filed_at": "2026-06-20"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-watch.annual-watch",
   "sources": [
    "sec-edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/watch/annual-watch",
   "data_mode": "live",
   "freshness": "delayed_15m",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.077Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-10-k-annual-report-filing-watch-feed-8e70bfda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
