FDA Recalls Scraper — Drug, Food & Device Enforcement avatar

FDA Recalls Scraper — Drug, Food & Device Enforcement

Pricing

Pay per event

Go to Apify Store
FDA Recalls Scraper — Drug, Food & Device Enforcement

FDA Recalls Scraper — Drug, Food & Device Enforcement

Export FDA enforcement and recall records — recalling firm, product description, reason for recall, classification, distribution pattern and dates — across drug, food and device endpoints as clean JSON, CSV or Excel.

Pricing

Pay per event

Rating

0.0

(0)

Developer

DevilScrapes

DevilScrapes

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 hours ago

Last modified

Share


🎯 What this scrapes

openFDA publishes every drug, food and device enforcement report, and it is the fastest way to see which firms are recalling what and why. The raw API paginates in a way that quietly caps you at 26 000 records and mixes three endpoints with different shapes. This Actor normalises all three into one row format and pages them properly, so a compliance watchlist becomes a spreadsheet instead of a scripting project.

🔥 What we handle for you

normalises drug, food and device endpoints into one predictable row shape stops cleanly at openFDA's 26 000-record pagination ceiling instead of looping retries transient 429/5xx responses so a rate-limit blip does not kill the run

💡 Use cases

  • Watch a competitor's recall history for quality-system signals before a supplier decision.
  • Build a compliance dashboard of Class I recalls in your product category.
  • Feed a supplier-risk model with recall frequency by firm and hazard class.
  • Track whether an ongoing recall affecting your supply chain has been terminated.

⚙️ How to use it

  1. Click Try for free at the top of the page.
  2. Fill in the input form — most fields have sensible defaults.
  3. Click Start. Output streams into the run's dataset.
  4. Export from Storage → Dataset as JSON, CSV, or Excel — or fetch via the API.

📥 Input

FieldTypeRequiredDefaultNotes
endpointstringno'drug'Which openFDA enforcement endpoint to pull.
searchQuerystringno'classification:"Class I"'openFDA search expression, e.g. recalling_firm:"Pfizer" or classification:"Class I". Leave…
sinceDatestringno'20250101'Only include recalls initiated on or after this date, as YYYYMMDD. Leave empty for no date floor.
maxResultsintegerno100Stop after this many records. Each record is one billed result row.
proxyConfigurationobjectno{'useApifyProxy': False}openFDA is a public government API and does not need a proxy. Leave this off unless your account requires egress…

Example input

{
"endpoint": "drug",
"searchQuery": "classification:\"Class I\"",
"maxResults": 3,
"proxyConfiguration": {
"useApifyProxy": false
}
}

📤 Output

Every row is one dataset item.

FieldTypeNotes
recall_numberstringFDA recall identifier.
event_idstringFDA enforcement event id grouping related recalls.
endpointstringWhich enforcement endpoint the row came from: drug, food or device.
statusstringRecall status, e.g. Ongoing, Completed, Terminated.
classificationstringHazard class — Class I, Class II or Class III.
recalling_firmstringFirm conducting the recall.
citystringRecalling firm city.
statestringRecalling firm state.
countrystringRecalling firm country.
product_typestringProduct type as reported by FDA.
product_descriptionstringProduct description text.
product_quantitystringQuantity in distribution, as published.
reason_for_recallstringStated reason for the recall.
distribution_patternstringWhere the product was distributed.
voluntary_mandatedstringWhether the recall was voluntary or FDA-mandated.
recall_initiation_datestringDate the recall began (YYYYMMDD).
report_datestringDate FDA published the report (YYYYMMDD).
termination_datestringDate the recall was terminated, when applicable.

Example output

{}

💰 Pricing

Pay-Per-Event — you pay only when these events fire:

EventUSDWhat it is
actor-start$0.05One-off warm-up charge per run
result$0.002Per dataset item

Example: 1 000 results at the rates above ≈ $2.05. No subscription, no minimum, no card to start — Apify gives every new account $5 of free credit.

🚧 Limitations

  • openFDA caps pagination at 26 000 records per query — narrow the search or the date floor to go deeper.
  • Date fields are passed through in FDA's YYYYMMDD string form rather than being reformatted.

❓ FAQ

Do I need an API key?

No. openFDA serves this data keylessly; the Actor stays inside the anonymous rate limit.

Can I pull all three recall types at once?

Run the Actor once per endpoint — the row shape is identical, so the datasets append cleanly.

Why is there a 26 000 record ceiling?

openFDA's skip parameter refuses to page past 26 000. The Actor stops cleanly at that boundary and tells you in the log rather than looping.

💬 Your feedback

Spotted a bug, hit a weird edge case, or need a new field? Open an issue on the Actor's Issues tab on Apify Console — we ship fixes weekly and we read every report.