# x402-factory DEF 14A Proxy Statement Watch Feed

> x402-factory DEF 14A Proxy Statement 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-15).

Returns a rolling feed of newly filed DEF 14A proxy statement documents from EDGAR, including filer name, filing date, accession number, and direct document links.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/watch/proxy-watch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-def-14a-proxy-statement-watch-feed-e3743ccc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_joiWnGT-vuADE_PTO9yYY

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-def-14a-proxy-statement-watch-feed-e3743ccc
```

Example prompt: Pull the latest DEF 14A proxy statement filings from EDGAR — give me the 20 most recent ones with the company name, filing date, and a link to each document.

## When to prefer this

Use this endpoint when you need a real-time rolling feed of DEF 14A proxy statement filings from SEC EDGAR without having to parse full EDGAR search results yourself. Ideal for agents that need to monitor proxy activity on an ongoing basis, trigger workflows on new filings, or surface recent filer metadata quickly. Prefer this over building a direct EDGAR scraper when normalized, ready-to-use metadata with direct links is sufficient and a low per-call cost is acceptable.

## Known failure modes

- No filings in feed if there have been no recent DEF 14A submissions to EDGAR
- limit parameter out of range (must be 1-50) returns validation error
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if called too frequently
- EDGAR upstream downtime may cause stale or empty results

## How this service works

New DEF 14A proxy statement filings feed (metadata + links) — Rolling feed of newly filed DEF 14A proxy statement documents: filer, filing date, accession number, and direct EDGAR links — metadata only, no deep parse. The watch feed for agents tracking DEF 14A proxy statement activity.

## Output

Returns a JSON object containing an array of recent DEF 14A proxy statement filings, each with company name, ticker symbol, form type, filing date (filed_at), a short text snippet, and a direct URL to the EDGAR document. Also includes metadata about the watch type and monitored form types.

## 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": [
    "DEF 14A"
   ],
   "watch": "proxy-watch",
   "filings": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000089/aapl-def14a2026.htm",
     "form": "DEF 14A",
     "ticker": "AAPL",
     "company": "Apple Inc.",
     "snippet": "Notice of 2026 annual meeting of shareholders and proxy statement…",
     "filed_at": "2026-07-08"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-watch.proxy-watch",
   "sources": [
    "sec-edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/watch/proxy-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-def-14a-proxy-statement-watch-feed-e3743ccc/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)
