# FDA MAUDE Adverse Event Summary by Device Brand

> FDA MAUDE Adverse Event Summary by Device Brand is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns counts of malfunctions, injuries, and deaths from the FDA MAUDE database for a given medical device brand name.

## Facts

- Endpoint: GET https://payai.agentstools.dev/device/adverse-events
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-maude-adverse-event-summary-by-device-brand-b5fb1e06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xZhG4mjJZ0elnnXjhA2GA

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 fda-maude-adverse-event-summary-by-device-brand-b5fb1e06
```

Example prompt: Can you pull the FDA MAUDE adverse event summary for 'pacemaker' — I want to see how many malfunctions, injuries, and deaths have been reported?

## When to prefer this

Use this endpoint when you need a fast, quantitative safety overview of a medical device from the official FDA MAUDE database, especially for due diligence, research, or regulatory compliance tasks. Prefer this over general web search when you need structured, citable counts broken down by event type (malfunction/injury/death) rather than anecdotal or news-based information.

## Known failure modes

- Brand name not found in MAUDE database — returns empty or zero counts
- Misspelled or overly generic brand name yields no useful match
- Rate limit or payment failure returns 402 error
- Database temporarily unavailable returns 5xx error
- Brand name too broad (e.g. 'device') returns undifferentiated or overwhelming results

## How this service works

Adverse-event summary for a medical-device brand from the FDA MAUDE database. Returns counts of malfunctions, injuries and deaths by event type. Informational, not medical advice.

## Output

A structured summary of adverse event counts from the FDA MAUDE database for the queried device brand, broken down by event type (malfunction, injury, death), enabling quick safety profiling of a medical device.

## 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": [
      "brand"
     ],
     "properties": {
      "brand": {
       "type": "string",
       "description": "Medical-device brand or generic device name, e.g. pacemaker"
      }
     }
    }
   },
   "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/fda-maude-adverse-event-summary-by-device-brand-b5fb1e06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
