# FDA Device Clearances & PMA Approvals Bulk Feed

> FDA Device Clearances & PMA Approvals Bulk Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns a paginated, newest-first feed of FDA 510(k) device clearances and PMA approvals from openFDA, filterable by applicant, state, product code, pathway, and advisory committee.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/fda-device-clearances
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-device-clearances-pma-approvals-bulk-feed-f51ae9a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_etzsUvIpxxt6p5EJ3xXNa

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-device-clearances-pma-approvals-bulk-feed-f51ae9a6
```

Example prompt: Pull the latest FDA 510k clearances and PMA approvals from govparse since January 1 2025, filtered to cardiovascular advisory committee applicants, and give me the first 500 results.

## When to prefer this

Choose this endpoint when you need bulk, structured, up-to-date FDA medical device clearance and approval data (510k and PMA) with flexible filtering by applicant, geography, product code, or advisory committee. Prefer it over manually querying openFDA when you need cursor-based pagination up to 1000 records/page, a clean newest-first feed, or a commercial-grade parsed output. Use the sibling drug approval feed for pharmaceutical approvals instead.

## Known failure modes

- Invalid product code returns empty result set
- Malformed date in 'since' parameter returns 400 error
- Invalid pathway value (not '510k' or 'pma') returns 400 error
- Stale or tampered cursor returns 400 or unexpected results
- Rate limiting or payment failure returns 402 or 429
- No records matching filters returns empty rows array

## How this service works

Which medical devices did the FDA just clear or approve, and who is the applicant? Bulk feed over openFDA 510(k) clearances and PMA approvals, newest-first by decision date — a new clearance is a device launch. Cursor-paginated up to 1000/page, filterable by applicant, state, product code, pathway (510k/pma), advisory committee, or since. Rows carry the applicant, device name, product code, advisory committee, pathway, and decision. Observational public records, never a recommendation.

## Output

A cursor-paginated list of FDA device clearance and approval records, each containing the applicant name, device name, FDA product code, advisory committee, regulatory pathway (510k or PMA), and decision date, plus a next_cursor token for fetching subsequent pages. Records are ordered newest-first by decision date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-06-01"
     ],
     "description": "Only decisions dated on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "MN"
     ],
     "description": "Applicant state code(s), CSV."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNy0xMCIsImsiOiJLMjU0Mjk1In0"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "pathway": {
     "type": "string",
     "examples": [
      "510k"
     ],
     "description": "Regulatory pathway: 510k | pma."
    },
    "applicant": {
     "type": "string",
     "examples": [
      "Abbott"
     ],
     "description": "Applicant (manufacturer) name fragment."
    },
    "committee": {
     "type": "string",
     "examples": [
      "Cardiovascular"
     ],
     "description": "FDA advisory-committee / specialty panel fragment (Cardiovascular, Radiology...)."
    },
    "product_code": {
     "type": "string",
     "examples": [
      "DXT"
     ],
     "description": "FDA product code (3-letter)."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-device-clearances-pma-approvals-bulk-feed-f51ae9a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
