# Drug Safety Recalls Monitor Enterprise Quickstart Sample Run

**Use case:** 

Zero-friction sample run of the FDA openFDA + EMA DHPC Drug Safety Recalls monitor. Walks up to 50 records per source with delta mode on, so you only get new and status-changed recall or safety-alert records since the last run. Run once to see the real data shape before a scheduled monitor.

## Input

```json
{
  "sources": [
    "fda",
    "ema"
  ],
  "maxItemsPerSource": 50,
  "onlyNew": true
}
```

## Output

```json
{
  "recordSource": {
    "label": "Record Source",
    "format": "string"
  },
  "record_id": {
    "label": "Record ID",
    "format": "string"
  },
  "event_type": {
    "label": "Event Type",
    "format": "string"
  },
  "recipient_or_defendant_name": {
    "label": "Recipient or Defendant Name",
    "format": "string"
  },
  "category_or_type": {
    "label": "Category or Type",
    "format": "string"
  },
  "status_or_estado": {
    "label": "Status",
    "format": "string"
  },
  "awarding_or_regulating_agency": {
    "label": "Regulating Agency",
    "format": "string"
  },
  "jurisdiction": {
    "label": "Jurisdiction",
    "format": "string"
  },
  "effective_date_iso": {
    "label": "Effective Date (ISO)",
    "format": "string"
  },
  "reference_number": {
    "label": "Reference Number",
    "format": "string"
  },
  "regulatoryDataDisclaimer": {
    "label": "Regulatory Data Disclaimer",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FDA & EMA Drug Safety Recall Monitor](https://apify.com/stefano_seggio/fda-ema-drug-recall-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/stefano_seggio/fda-ema-drug-recall-monitor.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/stefano_seggio/fda-ema-drug-recall-monitor.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`).
