# FDA Regulatory Catalyst Calendar

> FDA Regulatory Catalyst Calendar is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns upcoming FDA regulatory events (PDUFA dates, advisory committee meetings, CRLs, priority reviews, extensions) for a biotech issuer, sourced from SEC 8-K/6-K filings with exact filing citations.

## Facts

- Endpoint: GET https://api.agentstools.dev/catalyst/calendar
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-regulatory-catalyst-calendar-91db1a4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_55mJiu4jKDnoAswRusxqk

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 fda-regulatory-catalyst-calendar-91db1a4f
```

Example prompt: Pull the upcoming FDA regulatory catalyst calendar for SRRK from their SEC filings — I want PDUFA dates and any advisory committee meetings, forward-looking only.

## When to prefer this

Use this endpoint when you need FDA regulatory milestone dates for a specific biotech issuer grounded in primary source SEC filings rather than scraped press releases or third-party databases. Ideal for catalyst-driven investment research, event-driven trading signals, or compliance timelines where citation to an official filing is required.

## Known failure modes

- Ticker or CIK not found in SEC EDGAR — returns empty results or error
- No relevant 8-K/6-K filings found within the lookback window — empty event list
- All discovered dates are historical when forward_only=true — empty result
- Invalid ticker symbol — error or empty response
- EDGAR rate limit or upstream unavailability — service error
- Event type filter yields no matching events for this issuer

## How this service works

Forward-looking FDA regulatory catalyst calendar for one biotech issuer, extracted from primary SEC 8-K and 6-K filings. Give a ticker or CIK and get upcoming PDUFA target action dates, advisory committee meetings, Complete Response Letters, priority reviews and PDUFA extensions, each date grounded in a quote from the filing and cited to its accession and EDGAR URL.

## Output

A list of regulatory events for the queried issuer, each with: event type (pdufa, adcomm, crl, priority_review, pdufa_extension), the specific date, a verbatim quote from the SEC filing that grounds the date, the filing accession number, and the EDGAR URL for 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": {
      "cik": {
       "type": "string",
       "description": "SEC EDGAR issuer CIK, any zero-padding accepted"
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol, e.g. SRRK"
      },
      "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_only": {
       "type": "boolean",
       "description": "Only future dates (default true)"
      },
      "lookback_days": {
       "type": "integer",
       "maximum": 730,
       "minimum": 1,
       "description": "How far back to search filings, default 270"
      }
     }
    }
   },
   "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/fda-regulatory-catalyst-calendar-91db1a4f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
