# SEC Filing FDA Regulatory Date Extractor

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

Extracts all FDA regulatory decision dates (PDUFA, AdComm, CRL, priority review, pdufa extension) from a single SEC 8-K or 6-K filing, with grounding quotes.

## Facts

- Endpoint: GET https://api.agentstools.dev/catalyst/filing
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-filing-fda-regulatory-date-extractor-049fe565
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W1w_z6u_3NEVq_2kjkvmT

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 sec-filing-fda-regulatory-date-extractor-049fe565
```

Example prompt: Pull all the FDA regulatory dates — PDUFA, advisory committee, CRL, and any priority review dates — from Scholar Rock's most recent 8-K filing; their ticker is SRRK.

## When to prefer this

Use this endpoint when you need to extract FDA regulatory dates from a specific SEC filing or a company's most recent 8-K/6-K. Prefer it over the forward-looking calendar endpoint when you want document-grounded evidence with verbatim quotes rather than a synthesized calendar view. Ideal for compliance checks, research verification, or when you have a specific accession number to interrogate. Best for single-document cheap pulls rather than scanning across multiple filings.

## Known failure modes

- No matching 8-K or 6-K found for the given ticker or CIK — returns empty or error
- Accession number not found or invalid format — returns 400 or not found error
- Filing contains no FDA regulatory dates — returns empty events list
- Ticker not recognized by SEC EDGAR — returns lookup failure
- Rate limit or payment failure — returns 402 or 429 error

## How this service works

Extract every cited FDA regulatory-decision date from ONE SEC filing. Give an accession with its CIK, or a ticker or CIK to use the most recent matching 8-K or 6-K, and get all PDUFA, advisory committee, CRL, priority review and PDUFA extension dates in that document, each grounded in a quote. Cheap single-document pull.

## Output

A structured list of FDA regulatory event dates found in the specified SEC filing, each categorized by event type (pdufa, adcomm, crl, priority_review, pdufa_extension) and accompanied by a verbatim quote from the filing that grounds the date, plus metadata identifying 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"
      },
      "accession": {
       "type": "string",
       "description": "SEC accession like 0001104659-26-056655"
      },
      "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)"
      }
     }
    }
   },
   "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/sec-filing-fda-regulatory-date-extractor-049fe565/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)
