# EDGAR Recent IPO Filings

> EDGAR Recent IPO Filings is a paid API for AI agents from agent402.tools, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches recently-filed S-1 (IPO registration) or 424B4 (priced prospectus) filings from SEC EDGAR across all US issuers

## Facts

- Endpoint: GET https://agent402.tools/api/edgar-recent-ipos
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-recent-ipo-filings-5abf0e52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YClVJQTuCsTpzJ6gcW_rR

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 edgar-recent-ipo-filings-5abf0e52
```

Example prompt: Pull the most recent S-1 IPO registration filings from EDGAR for the last 14 days — show me up to 50 results so I can see which companies are preparing to go public.

## When to prefer this

Use this endpoint when you need to discover which US companies have recently filed to go public (S-1) or have actually priced an IPO (424B4), pulling live data directly from SEC EDGAR. Prefer this over manual EDGAR searches or scrapers when you need structured, filterable IPO filing data in an automated workflow.

## Known failure modes

- Invalid form type value returns an error — only 'S-1', '424B4', and 'S-1/A' are supported
- Days parameter outside 1-365 range may return an error or be clamped
- Limit above 200 may be rejected or clamped to 200
- EDGAR full-text search downtime causes upstream failures
- Payment of 0.015 USDC required per call; missing payment returns 402

## How this service works

Recently-filed S-1 (initial registration) or 424B4 (final prospectus - actual priced IPO) filings across all US issuers. Default returns S-1 filings (companies preparing to IPO) in the last 30 days; pass form=424B4 for actual IPOs that priced. Source: EDGAR full-text search. ?days=30&form=S-1

## Output

A list of recent SEC filings including company name, form type (S-1, 424B4, or S-1/A), filing date, and other EDGAR metadata for each issuer that filed within the specified lookback window.

## 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",
     "properties": {
      "days": {
       "type": "number",
       "description": "Lookback window in days, 1-365 (default 30)"
      },
      "form": {
       "type": "string",
       "description": "Form type. \"S-1\" = initial registration (default). \"424B4\" = final prospectus (actual priced IPOs). \"S-1/A\" = amended registration."
      },
      "limit": {
       "type": "number",
       "description": "Max filings, 1-200 (default 25)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "form",
      "windowDays",
      "startDate",
      "endDate",
      "total",
      "returned",
      "filings"
     ],
     "properties": {
      "form": {
       "type": "string"
      },
      "total": {
       "type": "integer"
      },
      "endDate": {
       "type": "string"
      },
      "filings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "returned": {
       "type": "integer"
      },
      "startDate": {
       "type": "string"
      },
      "windowDays": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "form": "S-1",
  "total": 142,
  "endDate": "2025-11-18",
  "filings": [
   {
    "cik": "0001999888",
    "url": "https://www.sec.gov/Archives/edgar/data/1999888/000121390025099999/exfiling.htm",
    "form": "S-1",
    "filedDate": "2025-11-17",
    "displayNames": [
     "Example Newco Inc."
    ],
    "accessionNumber": "0001213900-25-099999",
    "primaryDocument": "exfiling.htm"
   }
  ],
  "returned": 25,
  "startDate": "2025-10-19",
  "windowDays": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-recent-ipo-filings-5abf0e52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
