Scheduled FDA advisory-committee meetings that can move biotech and pharma names, soonest first. This family has a single market-wide endpoint.

## /v1/fda/catalysts

Returns upcoming FDA advisory-committee meetings — each with its meeting window, the reviewing center, the catalyst type, and its FDA.gov source page — ordered by meeting date, soonest first. This is a forward-looking calendar of announced meetings (historical coverage begins November 2025) with no stock-ticker linkage; follow each row's `sourceUrl` to see the product or sponsor under review.

**Parameters:** `startDate`, `endDate` (`yyyy-MM-dd`; default today through 90 days out, with `endDate` floored at the start date); `limit` (default 60, max 500). Not paged — no `offset`.

```bash
curl "https://api.equibles.com/v1/fda/catalysts?limit=2" \
  -H "Authorization: Bearer eq_your_api_key"
```

```python
import requests
r = requests.get(
    "https://api.equibles.com/v1/fda/catalysts?limit=2",
    headers={"Authorization": "Bearer eq_your_api_key"},
)
print(r.json())
```

```javascript
const res = await fetch("https://api.equibles.com/v1/fda/catalysts?limit=2", {
  headers: { Authorization: "Bearer eq_your_api_key" },
});
console.log(await res.json());
```

```json
{
  "data": [
    {
      "meetingDate": "2026-07-23",
      "endDate": "2026-07-24",
      "title": "July 23-24, 2026: Meeting of the Pharmacy Compounding Advisory Committee - 07/23/2026",
      "center": "Center for Drug Evaluation and Research",
      "catalystType": "Advisory Committee Meeting",
      "sourceUrl": "https://www.fda.gov/advisory-committees/advisory-committee-calendar/july-23-24-2026-meeting-pharmacy-compounding-advisory-committee-07232026"
    },
    {
      "meetingDate": "2026-07-29",
      "endDate": "2026-07-29",
      "title": "Cellular, Tissue, and Gene Therapies Advisory Committee July 29, 2026 Meeting Announcement - 07/29/2026",
      "center": "Center for Biologics Evaluation and Research",
      "catalystType": "Advisory Committee Meeting",
      "sourceUrl": "https://www.fda.gov/advisory-committees/advisory-committee-calendar/cellular-tissue-and-gene-therapies-advisory-committee-july-29-2026-meeting-announcement-07292026"
    }
  ]
}
```