# FDA Advisory Committee Meeting Calendar

> FDA Advisory Committee Meeting Calendar is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.030000/call, status unknown (last checked 2026-09-14).

Returns upcoming and recent FDA Advisory Committee (AdComm) meeting schedules scraped from FDA.gov public pages

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/fda-calendar
- Price: $0.030000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-8b6fedd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tVFjd93u7ehYVmBkkKyNs

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 x402-deployer-x402-deployer-workers-dev-8b6fedd2 -d '<json body>'
```

Example prompt: Can you pull the FDA advisory committee meeting calendar and show me any upcoming AdComm meetings scheduled in the next few months, especially for drug or device reviews?

## When to prefer this

Use this endpoint when you need a structured, ready-to-use list of FDA Advisory Committee meetings without manually parsing FDA.gov. Ideal for pharmaceutical industry monitoring, regulatory affairs tracking, or any agent that needs to alert users about upcoming FDA panel reviews of specific drugs or devices.

## Known failure modes

- FDA.gov page structure changes causing scrape failures
- No upcoming meetings found (empty calendar period)
- Stale data if FDA.gov has not been re-scraped recently
- Network timeout reaching FDA.gov origin
- HTTP 402 payment required if x402 payment header is missing or incorrect

## How this service works

FDA Advisory Committee meeting calendar. Upcoming + recent AdComm meetings scraped from FDA.gov public pages. Federal public.

## Output

A list of upcoming and recent FDA Advisory Committee meetings, including committee names, meeting dates, topics under review, and meeting status, sourced from scraped FDA.gov public pages.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "upcoming_only": {
       "type": "boolean",
       "description": "If true, return only meetings scheduled in the future (relative to fetched_at). Default false (returns recent + upcoming within the days_back window)."
      },
      "search": {
       "type": "string",
       "description": "Free-text filter applied to meeting title/committee (case-insensitive substring). Examples: 'vaccine', 'oncology', 'cardiovascular'."
      },
      "limit": {
       "type": "number",
       "description": "Max meetings to return (1-50). Default 25."
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "source": {
       "type": "string"
      },
      "fetched_at": {
       "type": "string"
      },
      "days_back": {
       "type": "integer"
      },
      "search": {
       "type": "null"
      },
      "include_renewals": {
       "type": "boolean"
      },
      "total_in_range": {
       "type": "integer"
      },
      "returned": {
       "type": "integer"
      },
      "upcoming_in_returned": {
       "type": "integer"
      },
      "meetings": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "title": {
          "type": "string"
         },
         "committee": {
          "type": "string"
         },
         "meeting_date": {
          "type": "string"
         },
         "docket": {
          "type": "string"
         },
         "html_url": {
          "type": "string"
         },
         "publication_date": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-8b6fedd2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
