# agent402.tools IPO Watch Bundled Workflow

> agent402.tools IPO Watch Bundled Workflow is a paid API for AI agents from agent402.tools, paid per call via x402, $0.041/call, status unknown (last checked 2026-09-15).

Runs a bundled IPO watch workflow that pulls recent S-1/IPO filings from EDGAR and searches the web for IPO news in a single x402-paid call

## Facts

- Endpoint: POST https://agent402.tools/api/skill/ipo-watch
- Price: $0.041/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-ipo-watch-bundled-workflow-2b526174
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FXjbTekbVfbLzt-1SLkrd

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 agent402-tools-ipo-watch-bundled-workflow-2b526174 -d '<json body>'
```

Example prompt: Can you run the IPO watch workflow and tell me what companies are currently going public — pull the latest S-1 and IPO filings from EDGAR and any recent IPO news you can find?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source IPO intelligence snapshot in a single paid call rather than orchestrating EDGAR lookups and web searches separately. It is ideal for financial research agents that want to know what companies are going public right now, combining regulatory filings with news context without managing three separate tool invocations.

## Known failure modes

- One or more of the three sub-tools (edgar-recent-ipos, search, search-news) may fail while others succeed — partial results are returned
- EDGAR may not have fresh filings if the SEC system is delayed
- Web search or news search may return no results if queries yield nothing
- Payment failure if the x402 wallet has insufficient USDC balance
- Malformed POST body or missing required fields causes 400-level error

## How this service works

Bundled execution of the IPO watch workflow - What companies are going public? Recent S-1/IPO filings from EDGAR plus a web search for IPO news. One x402 payment runs 3 underlying tools (edgar-recent-ipos, search, search-news); partial-success per step.

## Output

A combined result from three underlying tools: (1) recent IPO/S-1 filings from SEC EDGAR, (2) general web search results for IPO activity, and (3) recent news articles about IPOs — with partial-success handling if any sub-tool fails. Returns company names, filing details, and news snippets about companies going public.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "pack",
      "args",
      "steps",
      "summary"
     ],
     "properties": {
      "args": {
       "type": "object"
      },
      "pack": {
       "type": "string"
      },
      "steps": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ok": {
          "type": "boolean"
         },
         "slug": {
          "type": "string"
         },
         "result": {
          "type": "object"
         }
        }
       }
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {},
  "pack": "ipo-watch",
  "steps": [
   {
    "ok": true,
    "slug": "edgar-recent-ipos",
    "result": {}
   },
   {
    "ok": true,
    "slug": "search",
    "result": {}
   },
   {
    "ok": true,
    "slug": "search-news",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-ipo-watch-bundled-workflow-2b526174/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)
