Skip to main content
GET
/
v1
/
stock
/
fda-advisory-committee-calendar
FDA Advisory Committee Calendar
curl --request GET \
  --url https://api.aries.com/v1/stock/fda-advisory-committee-calendar \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "eventDescription": "Vaccines and Related Biological Products Advisory Committee March 12, 2026 Meeting Announcement - 03/12/2026",
      "fromDate": "2026-03-12 09:00:00",
      "toDate": "2026-03-12 15:30:00",
      "url": "https://www.fda.gov/advisory-committees/advisory-committee-calendar/vaccines-and-related-biological-products-advisory-committee-march-12-2026-meeting-announcement"
    }
  ]
}

Response

Success returns 200 OK with a JSON object containing a data array of events (e.g. fromDate, toDate, eventDescription, url). Errors: 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

data
object[]