# AnswerPool Priced Offerings

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

Returns recently-priced 424(b)(4) final prospectuses from SEC EDGAR, flagging each as likely-IPO or follow-on based on issuer filing history.

## Facts

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

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-priced-offerings-c5c79968
```

Example prompt: Pull the latest priced offerings from the last 7 days — up to 50 results — and tell me which ones are likely IPOs versus follow-ons based on SEC 424(b)(4) filings.

## When to prefer this

Choose this endpoint when you need a ready-made, minutes-fresh feed of priced SEC 424(b)(4) prospectuses with IPO-vs-follow-on classification already applied, avoiding the need to query EDGAR directly and implement your own heuristics. Prefer it over raw EDGAR full-text search when you specifically need final pricing events (not preliminary filings) and want the likely_ipo flag without building your own issuer-history lookup.

## Known failure modes

- Invalid days value (outside 1–365 range) returns a validation error
- Invalid limit value (outside 1–100) returns a validation error
- Payment not included or insufficient USDC causes a 402 response
- SEC EDGAR ingestion lag may mean the most recent minutes of filings are absent
- likely_ipo flag may misclassify issuers with pre-2021 424(b) history not in the index
- Empty offerings array returned if no prospectuses filed in the requested window

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

A JSON object containing an as_of timestamp, the window size in days, a count of matched offerings, and an array of offering records. Each record includes the accession number, CIK, company name, ticker (nullable), form type, filing date, EDGAR URL, and a likely_ipo boolean flag. A method_id, note, and disclaimer are also returned.

## 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": "PricedIn",
     "properties": {
      "days": {
       "type": "integer",
       "title": "Days",
       "default": 30,
       "maximum": 365,
       "minimum": 1,
       "description": "Length in days of the 424(b)(4) filing-date window ending today."
      },
      "limit": {
       "type": "integer",
       "title": "Limit",
       "default": 50,
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum offerings returned, most recently filed first."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-priced-offerings-c5c79968/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)
