# FDA 510k Bulk Clearance Exporter

**Use case:** 

Scrape FDA 510(k) medical device clearances by company, device, or product code. Returns applicant, decision date, decision type & panel for medtech competitive intel and regulatory affairs. No API key. Use it as an MCP server in Claude, ChatGPT & AI agents.

## Input

```json
{
  "applicant": "Medtronic",
  "deviceName": "pacemaker",
  "productCode": "FRN",
  "decisionType": "SE",
  "dateFrom": "2020-01-01",
  "maxResults": 100
}
```

## Output

```json
{
  "k_number": {
    "label": "K Number",
    "format": "string"
  },
  "device_name": {
    "label": "Device",
    "format": "string"
  },
  "applicant": {
    "label": "Applicant",
    "format": "string"
  },
  "decision_date": {
    "label": "Decision Date",
    "format": "string"
  },
  "decision_code": {
    "label": "Decision Code",
    "format": "string"
  },
  "product_code": {
    "label": "Product Code",
    "format": "string"
  },
  "review_panel": {
    "label": "Review Panel",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FDA 510(k) Clearances Scraper | 11 Fields, No API Key](https://apify.com/themineworks/fda-510k-device-clearances.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/themineworks/fda-510k-device-clearances.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/themineworks/fda-510k-device-clearances.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
