Unusual Whales UnusualWhales API

FDA Calendar

GET https://api.unusualwhales.com/api/market/fda-calendar

Request

Security: Bearer Auth Authorization: Bearer <token>

Query Parameters

announced_date_min Optional Market Date optional

Minimum announced date (YYYY-MM-DD)

Example: 2024-01-18
announced_date_max Optional Market Date optional

Maximum announced date (YYYY-MM-DD)

Example: 2024-01-18
target_date_min FDA Target Date optional

Minimum target date (supports Q1-Q4, H1-H2, MID, LATE formats)

Example: 2024-Q1
pattern: ^\d{4}-(Q[1-4]|H[1-2]|MID|LATE|\d{2}-\d{2})$
target_date_max FDA Target Date optional

Maximum target date (supports Q1-Q4, H1-H2, MID, LATE formats)

Example: 2024-Q1
pattern: ^\d{4}-(Q[1-4]|H[1-2]|MID|LATE|\d{2}-\d{2})$
drug Drug Name optional

Filter by drug name (partial match)

Example: Keytruda
ticker Ticker optional

Filter by ticker symbol

Example: AAPL,INTC
limit Default 100 Max 200 Min 1 optional

Maximum number of results to return

Example: 10 Default: 100
>= 1 <= 200

Responses

200 500

Response Body 200 OK

catalyst FDA Calendar Catalyst

The type of FDA event (e.g., PDUFA Date, Advisory Committee Meeting)

Example: PDUFA Date
description FDA Calendar Description

Detailed description of the FDA event

Example: FDA decision for Lifileucel in advanced melanoma
drug FDA Calendar Drug

Name of the drug under FDA review

Example: Lifileucel
end_date FDA Calendar End Date

The end date of the FDA event

Example: 2024-02-24
has_options Has Options

Whether the company has options available for trading

Example: true
indication FDA Calendar Indication

The medical condition the drug is intended to treat

Example: Advanced Melanoma
marketcap Company Market Cap

The company's market capitalization in USD

Example: 1000000000
notes FDA Calendar Notes

Additional important notes about the FDA event

Example: Important milestone for the company's drug pipeline
outcome FDA Calendar Outcome

The outcome of the FDA event if already occurred

Example: Approved
outcome_brief FDA Calendar Outcome Brief

Brief summary of the FDA event outcome

Example: Complete Response Letter received
source_link FDA Calendar Source Link

Link to the source of the FDA event information

Example: https://www.fda.gov/news-events/press-announcements/fda-example
start_date FDA Calendar Start Date

The start date of the FDA event

Example: 2024-02-24
status FDA Calendar Status

The current status of the FDA application (e.g., NDA, BLA)

Example: NDA
ticker FDA Calendar Ticker

The ticker of the company applying for drug admission.

Example: IOVA
Try It GET
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/market/fda-calendar" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "catalyst": "PDUFA Date",
      "description": "FDA decision for Lifileucel in advanced melanoma",
      "drug": "Lifileucel",
      "end_date": "2024-02-24",
      "has_options": true,
      "indication": "Advanced Melanoma",
      "marketcap": "1000000000",
      "notes": "Important milestone for the company's drug pipeline",
      "outcome": null,
      "outcome_brief": null,
      "source_link": "https://www.fda.gov/news-events/press-announcements/fda-example",
      "start_date": "2024-02-24",
      "status": "NDA",
      "ticker": "IOVA"
    }
  ]
}