# IPO / S-1 Analysis

> IPO / S-1 Analysis is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes a company's S-1 IPO filing to extract key metrics including revenue, growth rates, risks, use of proceeds, business model, and competitive landscape.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/ipo-s-1-analysis
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ipo-s-1-analysis-5e283242
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oYuOSDLmhOAD87d5F9WK2

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 ipo-s-1-analysis-5e283242 -d '<json body>'
```

Example prompt: Can you pull up and analyze the S-1 filing for CoreWeave — I want to know their revenue, growth trajectory, key risks, and what they plan to do with the IPO proceeds?

## When to prefer this

Use this endpoint when you need structured analysis of an SEC S-1 filing for either a post-IPO company (via ticker) or a pre-IPO company (via company name). Prefer this over general web search when you need structured extraction of specific S-1 metrics like revenue, risk factors, or use of proceeds rather than news commentary about an IPO.

## Known failure modes

- Company name not found in SEC filing database — no S-1 on record
- Ticker provided for a company that has not yet filed an S-1
- Ambiguous company name matching multiple filings
- S-1 filing too recent to be indexed
- Payment of 0.1 USDC not completed, returning 402 error

## How this service works

IPO / S 1 Analysis: Analyze a company's S-1 IPO filing. Extracts key metrics: revenue, growth, risks, use of proceeds, business model, and competitive landscape. Provide a ticker (for companies that have already filed) or company name (for pre-IPO search).

## Output

Returns a structured analysis of the company's S-1 IPO filing including key financial metrics (revenue, growth rates), identified risk factors, planned use of proceeds, description of the business model, and competitive landscape overview extracted directly from the filing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "title": "Ticker",
   "default": "",
   "description": "Stock ticker (for post-IPO or filed S-1)",
   "json_schema_extra": {
    "example": "PLTR"
   }
  },
  "company_name": {
   "type": "string",
   "title": "Company Name",
   "default": "",
   "description": "Company name (for pre-ticker S-1 search)",
   "json_schema_extra": {
    "example": "CoreWeave"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ipo-s-1-analysis-5e283242/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
