Which firms just received an FDA Warning Letter — an open compliance-gap and remediation c
Which firms just received an FDA Warning Letter — an open compliance-gap and remediation clock? Bulk feed over the FDA Warning Letters index, newest-first by issue date: recipient firm, product area (drugs/devices/food/tobacco…), issuing office, alleged-violation subject, and the response / close-out clock. Flat rows, cursor-paginated up to 1000/page, filterable by product_area, subject, close-out state, or since. Observational records — an alleged violation, never an adjudication.
25000000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-10
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "25000000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "25000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"office": "Center for Tobacco Products",
"product_area": "drugs,devices",
"since": "2026-01-01"
},
"type": "http"
},
"output": {
"example": {
"basis": "US FDA Warning Letters index, one row per letter newest-first by letter_issue_date. Observational public records as posted — an alleged violation, never an adjudication.",
"feed": "warning-letters",
"page": {
"has_more": true,
"limit": 500,
"next_cursor": "eyJkIjoiMjAyNi0wNi0wMyIsImsiOiJvc2hhOjMxOTAwMTIzNCJ9",
"returned": 500
},
"query": {
"closed": "all",
"office": "all",
"product_area": [
"tobacco"
],
"since": "2026-01-01",
"subject": "all"
},
"rows": [
{
"as_published_date": "2026-07-18",
"closeout_date": null,
"entity_id": null,
"event_date": "2026-04-21",
"event_key": "wl:3543b16645e65cca776679711bf85f6e",
"has_response": false,
"is_closed": false,
"issuing_office": "Center for Tobacco Products",
"letter_issue_date": "2026-04-21",
"posted_date": "2026-04-23",
"product_area": "tobacco",
"recipient": "Daily Manufacturing Solutions Inc.",
"response_date": null,
"subject": "Family Smoking Prevention and Tobacco Control Act/Adulterated/Misbranded"
}
]
},
"type": "json"
}
},
"routeTemplate": "/v1/feeds/warning-letters",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"closed": {
"description": "true = closed-out letters only; false = open (no close-out) only.",
"examples": [
"false"
],
"type": "string"
},
"cursor": {
"description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
"examples": [
"eyJkIjoiMjAyNi0wNC0yMSIsImsiOiIzNTQzYjE2NiJ9"
],
"type": "string"
},
"limit": {
"description": "Rows per page (default 500, cap 1000).",
"examples": [
500
],
"type": "integer"
},
"office": {
"description": "Issuing FDA center / district office fragment (e.g. Center for Drug Evaluation and Research).",
"examples": [
"Center for Tobacco Products"
],
"type": "string"
},
"product_area": {
"description": "Product area(s), CSV: drugs | devices | biologics | food | dietary-supplement | cosmetics | tobacco | veterinary | other.",
"examples": [
"drugs,devices"
],
"type": "string"
},
"since": {
"description": "Only letters issued on or after this date (YYYY-MM-DD).",
"examples": [
"2026-01-01"
],
"type": "string"
},
"subject": {
"description": "Alleged-violation subject fragment (e.g. CGMP, Adulterated, Unapproved New Drug).",
"examples": [
"CGMP"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/feeds/warning-letters" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.govparse.io/v1/feeds/warning-letters");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.govparse.io/v1/feeds/warning-letters")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14565.json, and this resource appears in /discovery/resources and /discovery/search.