FDA Warning Letters API
Every FDA warning letter as clean, structured JSON - company, issue date, issuing office, and violation subject.
What this feed does
The FDA publishes warning letters as an HTML table - no bulk download, no API. This feed scrapes the official Warning Letters index on demand and returns clean, structured JSON: who was warned, when, by which FDA office, and for what.
Structured, not scraped-by-you
Clean JSON with stable field names - no HTML parsing, no selectors to maintain when the site changes.
Pay only for what you pull
No subscription. $0.01 per record via Apify's metered billing; a typical pull is cents.
Human + agent ready
Call it from cURL, Python, or JS - or hand it to an AI agent as an MCP tool.
Always the latest
Scraped from the official source on every run, so you never ship stale data.
What each record contains
Every result is a JSON object with these fields.
| Field | Type | Description |
|---|---|---|
company_name | string | Name of the company or individual the letter was issued to. |
letter_issue_date | string, ISO-8601 date | Date the FDA issued the warning letter. |
posted_date | string, ISO-8601 date | Date the letter was published to FDA.gov. |
issuing_office | string | FDA center or district office that issued it (e.g. CDER). |
subject | string | Violation category / subject of the letter. |
url | string, URL | Direct link to the full letter on fda.gov. |
Live sample
The most recent records, straight from the feed. Live sample - fetched at build time
| company_name | letter_issue_date | issuing_office | subject |
|---|---|---|---|
| Spa De Soleil, Inc. | 08 Jul 2026 | Center for Drug Evaluation and Research (CDER) | CGMP/Finished Pharmaceuticals/Adulterated |
| ZIIP, Inc. | 22 May 2026 | Center for Devices and Radiological Health | CGMP/QSR/Medical Devices/Adulterated |
| Nutratech, LLC | 04 Jun 2026 | Human Foods Program | CGMP/Dietary Supplement/Adulterated/Misbranded |
| Allandale Dairy | 23 Jun 2026 | Center for Veterinary Medicine | New Animal Drug/Adulterated |
| snusblast.co.uk | 02 Jul 2026 | Center for Tobacco Products | Family Smoking Prevention and Tobacco Control Act/Adulterated/Misbranded |
| Win Woo Trading, LLC / HF Foods Group | 24 Jun 2026 | Office of Inspections and Investigations | Foreign Supplier Verification Program (FSVP) |
| International Medication Systems Limited | 02 Jul 2026 | Center for Drug Evaluation and Research (CDER) | CGMP/Finished Pharmaceuticals/Adulterated |
| J&B Food Consulting | 27 Mar 2026 | Office of Inspections and Investigations | Foreign Supplier Verification Program (FSVP) |
Call it in one line
Runs the actor and returns the dataset. Swap in your Apify token.
curl "https://api.apify.com/v2/acts/zenolvepro~fda-warning-letters/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("zenolvepro/fda-warning-letters").call()
for row in client.dataset(run["defaultDatasetId"]).iterate_items():
print(row)import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('zenolvepro/fda-warning-letters').call();
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);https://mcp.apify.com?tools=zenolvepro/fda-warning-letters
Point any MCP-capable agent at this endpoint and the feed becomes a callable tool.
Who uses it
RegTech vendors, pharma / food / medical-device compliance teams, supplier-risk analysts, and regulatory lawyers use it for monitoring, benchmarking, alerting, and enrichment.
Pricing
Billed through Apify. A tiny per-run start fee ($0.00005) applies. Only pay for records you actually pull.