Zenolve Feeds
Regulatory & compliance data

FDA Warning Letters API

Every FDA warning letter as clean, structured JSON - company, issue date, issuing office, and violation subject.

Source: U.S. Food & Drug Administration$0.01 / recordJSON · CSV · ExcelMCP tool for AI agents

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.

FieldTypeDescription
company_namestringName of the company or individual the letter was issued to.
letter_issue_datestring, ISO-8601 dateDate the FDA issued the warning letter.
posted_datestring, ISO-8601 dateDate the letter was published to FDA.gov.
issuing_officestringFDA center or district office that issued it (e.g. CDER).
subjectstringViolation category / subject of the letter.
urlstring, URLDirect 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_nameletter_issue_dateissuing_officesubject
Spa De Soleil, Inc.08 Jul 2026Center for Drug Evaluation and Research (CDER)CGMP/Finished Pharmaceuticals/Adulterated
ZIIP, Inc.22 May 2026Center for Devices and Radiological HealthCGMP/QSR/Medical Devices/Adulterated
Nutratech, LLC04 Jun 2026Human Foods ProgramCGMP/Dietary Supplement/Adulterated/Misbranded
Allandale Dairy23 Jun 2026Center for Veterinary MedicineNew Animal Drug/Adulterated
snusblast.co.uk02 Jul 2026Center for Tobacco ProductsFamily Smoking Prevention and Tobacco Control Act/Adulterated/Misbranded
Win Woo Trading, LLC / HF Foods Group24 Jun 2026Office of Inspections and InvestigationsForeign Supplier Verification Program (FSVP)
International Medication Systems Limited02 Jul 2026Center for Drug Evaluation and Research (CDER)CGMP/Finished Pharmaceuticals/Adulterated
J&B Food Consulting27 Mar 2026Office of Inspections and InvestigationsForeign Supplier Verification Program (FSVP)

Call it in one line

Runs the actor and returns the dataset. Swap in your Apify token.

cURL - one call, JSON back
curl "https://api.apify.com/v2/acts/zenolvepro~fda-warning-letters/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"
Python
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)
JavaScript / Node
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);
AI agents - Model Context Protocol (MCP)
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

$0.01per record returned · pay-per-result, no subscription

Billed through Apify. A tiny per-run start fee ($0.00005) applies. Only pay for records you actually pull.

FAQ

Is there a free FDA warning letters API?
The FDA does not publish a bulk API - the official page is HTML only. This feed turns it into clean JSON on demand. It is pay-per-result at $0.01 per record with no subscription, so a typical pull costs a few cents.
How current is the data?
Live. Every call scrapes the FDA Warning Letters index at request time, so you get letters the moment FDA lists them - not a stale snapshot.
What fields does each record include?
company_name, letter_issue_date, posted_date, issuing_office, subject, and a direct url to the full letter - all as structured JSON.
Can I export to CSV or Excel?
Yes. Results land in an Apify dataset you can pull as JSON, CSV, Excel, or XML with a single API call.
Can an AI agent call this directly?
Yes - the feed is exposed as an MCP tool, so an AI agent can pull FDA warning letters as a native function call with no glue code.