# FDA Device Clearance & PMA Approval Search (govparse.io)

> FDA Device Clearance & PMA Approval Search (govparse.io) is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search openFDA 510(k) clearances and PMA premarket approvals by company, pathway, product code, specialty, state, or decision date to find recently cleared or approved medical devices.

## Facts

- Endpoint: GET https://api.govparse.io/v1/fda/device-clearances/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-device-clearance-pma-approval-search-govparse-io-b2ae2201
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3R1aEeQi1TRYWpQJcxPvw

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-clearance-pma-approval-search-govparse-io-b2ae2201
```

Example prompt: Find all companies that received FDA 510(k) clearance for cardiovascular devices since January 1, 2025 — give me the company name, device name, product code, and decision date, sorted by most recent first.

## When to prefer this

Use this endpoint when you need structured, searchable access to FDA medical device regulatory decisions (510k clearances and PMA approvals) filtered by company, specialty, geography, or date — especially for sales prospecting, competitive intelligence, or regulatory monitoring. Prefer this over raw openFDA queries when you need entity-resolved company names, combined 510k+PMA search in one call, or clean tabular output without parsing FDA's raw JSON.

## Known failure modes

- No results returned when company name spelling differs significantly from FDA records
- State filter only applies to 510(k) records, not PMA — PMA state queries may return empty
- Invalid date format (not YYYY-MM-DD) causes a parsing error or empty result
- Product code or advisory committee fragment with no matching records returns empty list
- Offset beyond total record count returns empty result set
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Which companies just cleared or got FDA approval for a medical device? Search openFDA device 510(k) clearances and PMA premarket approvals by applicant company, pathway (510k/pma), FDA product code, advisory-committee specialty (e.g. Cardiovascular), applicant state, or decision date (since). Returns the applicant company (entity-resolved where possible), device name, product code, and decision date — a fresh target list for device and component sellers. openFDA public-domain records.

## Output

Returns a list of FDA device clearance and approval records, each containing the applicant company name (entity-resolved where possible), device name, FDA product code, regulatory pathway (510k or pma), and decision date. Results are pageable and sortable by decision date or date received.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "sort": {
     "type": "string",
     "examples": [
      "decision_date:desc"
     ],
     "description": "decision_date | date_received :asc|:desc. Default decision_date:desc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Decision (clearance/approval) date on/after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "CA"
     ],
     "description": "Applicant state code(s), CSV (510(k) only)."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip."
    },
    "company": {
     "type": "string",
     "examples": [
      "Medtronic"
     ],
     "description": "Applicant company — suffix/punctuation-insensitive."
    },
    "pathway": {
     "type": "string",
     "examples": [
      "510k"
     ],
     "description": "510k | pma (CSV)."
    },
    "entity_id": {
     "type": "string",
     "examples": [
      "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
     ],
     "description": "Resolved employer entity UUID."
    },
    "product_code": {
     "type": "string",
     "examples": [
      "DXY"
     ],
     "description": "FDA product code(s), CSV."
    },
    "advisory_committee": {
     "type": "string",
     "examples": [
      "Cardiovascular"
     ],
     "description": "Medical specialty panel fragment."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-device-clearance-pma-approval-search-govparse-io-b2ae2201/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)
