# x402-factory 424B Securities Offering Watch Feed

> x402-factory 424B Securities Offering 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 424B securities offering 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/offering-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-424b-securities-offering-watch-feed-2295f083
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7PckvucJhi-aJLgv95SfF

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-424b-securities-offering-watch-feed-2295f083
```

Example prompt: Pull the latest 424B securities offering filings from EDGAR — give me up to 30 of the most recent ones with the company name, filing date, and link to each document.

## When to prefer this

Use this endpoint when you need a lightweight, metadata-only rolling feed of newly filed 424B securities offering documents without deep parsing of the full prospectus text. Ideal for monitoring capital markets activity, building deal-flow dashboards, or triggering downstream workflows when new offerings are filed. Prefer this over full EDGAR scraping when you only need filer identity, date, and document links rather than the parsed offering content itself.

## Known failure modes

- Invalid limit parameter (outside 1-50 range) returns a validation error
- EDGAR upstream unavailability may cause empty or stale results
- Payment failure (insufficient USDC balance) results in 402 response
- Rate limiting may occur with excessive polling

## How this service works

New 424B securities offering filings feed (metadata + links) — Rolling feed of newly filed 424B securities offering documents: filer, filing date, accession number, and direct EDGAR links — metadata only, no deep parse. The watch feed for agents tracking 424B securities offering activity.

## Output

A JSON object containing a list of recent 424B filing entries, each with company name, ticker symbol (where available), form type, filing date, a short snippet, and a direct URL to the EDGAR document. 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": [
    "424B1",
    "424B2",
    "424B3",
    "424B4",
    "424B5"
   ],
   "watch": "offering-watch",
   "filings": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/1811021/000119312526180442/stripe-424b4.htm",
     "form": "424B4",
     "company": "Stripe, Inc.",
     "snippet": "Prospectus: offering of 40,000,000 shares of Class A common stock at $86.00 per share…",
     "filed_at": "2026-07-14"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-watch.offering-watch",
   "sources": [
    "sec-edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/watch/offering-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-424b-securities-offering-watch-feed-2295f083/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)
