# AnswerPool IPO Registrations

> AnswerPool IPO Registrations is a paid API for AI agents from answerpool.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns new S-1 and F-1 IPO registration statements filed with the SEC in the last N days, sorted newest first with CIK, company, ticker, form type, and EDGAR filing links.

## Facts

- Endpoint: GET https://answerpool.io/v1/ipo/registrations
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-ipo-registrations-7101f943
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iU4rIGQZftZGOpHKJNTfI

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 answerpool-ipo-registrations-7101f943
```

Example prompt: Pull all new S-1 and F-1 IPO registration statements filed in the last 14 days — include foreign private issuers but skip amendments — and give me the company names, tickers, CIKs, and EDGAR links.

## When to prefer this

Choose this endpoint when you need a structured, ready-to-consume list of recent IPO registrations without polling EDGAR directly. It replaces manual EDGAR form-feed polling and handles form-type filtering, amendment exclusion, and foreign-issuer toggling in a single call. Prefer it over raw EDGAR queries when you want clean CIK/accession data with filing links and don't want to parse EDGAR's full-text index yourself.

## Known failure modes

- Invalid 'days' value outside 1–365 range returns a validation error
- Invalid 'limit' value outside 1–100 returns a validation error
- EDGAR data lag may mean very recent filings (within hours) are not yet indexed
- No filings in the requested window returns an empty filings array with count 0
- Payment failure (missing or invalid x402 payment) results in a 402 response blocking access

## How this service works

New S-1 and F-1 registration statements filed in the last N days — companies that just started going public, newest first with CIKs and filing links; amendments excluded by default. One call replaces EDGAR form-feed polling.

## Output

A JSON object containing an as-of timestamp, the lookback window in days, a count of matching filings, and an array of filing records — each with accession number, CIK, company name, ticker (if available), form type (S-1 or F-1), filing date, and EDGAR filing URL. Also includes a disclaimer noting these are heuristic classifications, not investment advice.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "title": "NewRegsIn",
     "properties": {
      "days": {
       "type": "integer",
       "title": "Days",
       "default": 30,
       "maximum": 365,
       "minimum": 1,
       "description": "Length in days of the filing-date window ending today."
      },
      "limit": {
       "type": "integer",
       "title": "Limit",
       "default": 50,
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum filings returned, most recently filed first."
      },
      "foreign": {
       "type": "boolean",
       "title": "Foreign",
       "default": true,
       "description": "Include F-1 (foreign private issuers)."
      },
      "include_amendments": {
       "type": "boolean",
       "title": "Include Amendments",
       "default": false,
       "description": "True keeps S-1/A and F-1/A; false (default) returns initial filings only."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": null,
  "as_of": "2026-09-02T23:00:00Z",
  "count": 1,
  "filings": [
   {
    "cik": "0001999999",
    "url": "https://www.sec.gov/Archives/edgar/data/1999999/000143774926028920-index.htm",
    "form": "S-1",
    "filed": "2026-08-29",
    "ticker": null,
    "company": "EXAMPLE ROBOTICS INC",
    "accession": "0001437749-26-028920"
   }
  ],
  "window_days": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-ipo-registrations-7101f943/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
