# x402-factory S-1 IPO Registration Filings Watch Feed

> x402-factory S-1 IPO Registration Filings 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 S-1 IPO registration documents from EDGAR, including filer name, filing date, accession number, and direct EDGAR links — metadata only.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/watch/ipo-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-s-1-ipo-registration-filings-watch-feed-7d44c827
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GxN2YlzjoKMx_Pmu2NNs1

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-s-1-ipo-registration-filings-watch-feed-7d44c827
```

Example prompt: Pull the latest S-1 IPO registration filings from EDGAR — give me up to 30 of the most recent ones, including the company name, filing date, and a link to the document.

## When to prefer this

Use this endpoint when you need a fast, normalized rolling feed of newly filed S-1 IPO registration documents from SEC EDGAR without needing to parse the full filings. Ideal for agents monitoring IPO pipeline activity, building daily briefings, or triggering downstream research workflows on fresh registrations. Prefer this over scraping EDGAR directly when you want pre-normalized metadata with direct document links at low per-call cost.

## Known failure modes

- Limit parameter out of range (must be 1–50) returns validation error
- EDGAR upstream unavailability may return stale or empty data
- Missing or malformed query parameters return schema validation errors
- Payment failure (insufficient USDC) blocks access to the endpoint

## How this service works

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

## Output

Returns a structured feed containing an array of recent S-1 filings, each with company name, form type, filing date (filed_at), a short snippet, the filing URL pointing directly to EDGAR, and optional ticker symbol. Also includes metadata about the watch feed itself and the form types being monitored.

## 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": [
    "S-1",
    "S-1/A"
   ],
   "watch": "ipo-watch",
   "filings": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/1867287/000119312526182001/cerebras-s1.htm",
     "form": "S-1",
     "company": "Cerebras Systems Inc.",
     "snippet": "Initial public offering of Class A common stock. We are an AI compute systems company…",
     "filed_at": "2026-07-15"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-watch.ipo-watch",
   "sources": [
    "sec-edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/watch/ipo-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-s-1-ipo-registration-filings-watch-feed-7d44c827/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)
