# x402-factory EDGAR Watch Form Delta

> x402-factory EDGAR Watch Form Delta is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns only the new or changed SEC filings for a watched form type since a given cursor, enabling efficient incremental polling.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/watch/:form/delta
- 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/x402-factory-edgar-watch-form-delta-5ffabb1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ufnPNYmyv36jhy9phkStP

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-edgar-watch-form-delta-5ffabb1c
```

Example prompt: Check for any new or changed IPO-watch filings on EDGAR since my last cursor — give me the delta with the next cursor so I can keep polling.

## When to prefer this

Use this endpoint when you need efficient incremental polling of EDGAR filings for a specific watched form type (IPO, activist, offering, annual, delisting, or proxy) without re-fetching the full dataset each time. Prefer over the sibling /changes endpoint when you want a keyset-paginated delta with stable cursors and a changed_count, suitable for automated agent pipelines that need to resume exactly where they left off across restarts.

## Known failure modes

- Invalid or expired cursor returns an error or resets state
- Unknown form enum value returns a 400 bad request
- Omitting the required form path param returns a 404
- Network or upstream EDGAR outage may return 5xx
- Cursor from incompatible API version may be rejected

## How this service works

Only the filings of the watched form changed since your cursor (delta of /v1/edg — Keyset delta of /v1/edgar/watch/:form: pass since=<next_cursor from your last call> and get only the filings of the watched form added or changed after it, plus changed_count and a new next_cursor. Omit since once to bootstrap. Cursors are stable across restarts. Poll the free sibling /v1/edgar/watch/:form/changes…

## Output

Returns an array of filing rows (each with accession number, CIK, ticker, company name, form type, filing timestamp, and classified type), a changed_count integer, a next_cursor string for the next poll, and an as_of timestamp indicating data freshness.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "form"
     ],
     "properties": {
      "form": {
       "enum": [
        "ipo-watch",
        "activist-watch",
        "offering-watch",
        "annual-watch",
        "delisting-watch",
        "proxy-watch"
       ],
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "since": {
       "type": "string",
       "maxLength": 300,
       "minLength": 4,
       "description": "Opaque cursor from a previous next_cursor; omit once to bootstrap a cursor at now"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "rows",
        "changed_count",
        "next_cursor",
        "as_of"
       ],
       "properties": {
        "rows": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "accession",
           "cik",
           "ticker",
           "company",
           "form",
           "filed_at",
           "classified_type"
          ],
          "properties": {
           "cik": {
            "type": "string"
           },
           "form": {
            "type": "string"
           },
           "ticker": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "company": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "filed_at": {
            "type": "string"
           },
           "accession": {
            "type": "string"
           },
           "classified_type": {
            "anyOf": [
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-edgar-watch-form-delta-5ffabb1c/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)
