# catalyst-upcoming

> catalyst-upcoming is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns market-wide upcoming FDA regulatory catalysts (PDUFA dates, AdComm meetings, etc.) sourced from recent SEC 8-K and 6-K filings, with filing quotes and EDGAR citation links.

## Facts

- Endpoint: GET https://payai.agentstools.dev/catalyst/upcoming
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/catalyst-upcoming-a1bc6b8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rQKqDqwdlrAOzzoi4_OyI

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 catalyst-upcoming-a1bc6b8d
```

Example prompt: Pull the next 30 upcoming FDA regulatory catalysts — PDUFA dates and advisory committee meetings — from recent SEC filings, looking 180 days forward.

## When to prefer this

Choose this endpoint when you need a market-wide sweep of upcoming FDA regulatory events grounded directly in SEC filings rather than a curated database or news feed. It is uniquely valuable when you need verifiable citations (filing quotes, accession numbers, EDGAR URLs) alongside the catalyst dates. Prefer it over general news APIs when auditability and sourcing to primary regulatory disclosures matters, or when you want bounded, structured output across many biotech issuers in a single call without managing fan-out yourself.

## Known failure modes

- No catalysts found if no 8-K/6-K filings mention upcoming FDA events in the specified forward window
- limit parameter out of range (must be 1–15) returns validation error
- forward_days out of range (must be 1–730) returns validation error
- event_types enum value not recognized returns validation error
- Upstream EDGAR parsing failure may return partial results or empty list
- Payment failure (402) if USDC balance is insufficient

## How this service works

Market-wide upcoming FDA regulatory catalysts across recent SEC 8-K and 6-K filings in a forward window. Get PDUFA dates, advisory committee meetings and other regulatory events for many biotech issuers at once, each grounded in a filing quote and cited to its accession and EDGAR URL. Bounded fan-out.

## Output

A list of upcoming FDA regulatory catalyst events (up to the requested limit), each including the event type (PDUFA, adcomm, CRL, priority review, or PDUFA extension), the expected date, the issuer/company name, a verbatim quote from the relevant SEC filing, the filing accession number, and a direct EDGAR URL linking to the source document.

## 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",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 15,
       "minimum": 1,
       "description": "Max events to return, default 15"
      },
      "event_types": {
       "type": "array",
       "items": {
        "enum": [
         "pdufa",
         "adcomm",
         "crl",
         "priority_review",
         "pdufa_extension"
        ],
        "type": "string"
       },
       "description": "Optional filter of regulatory event types to include (default all)"
      },
      "forward_days": {
       "type": "integer",
       "maximum": 730,
       "minimum": 1,
       "description": "Forward window in days, default 365"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/catalyst-upcoming-a1bc6b8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
