{"openapi":"3.1.0","info":{"title":"Argus HQ Enforcement API","description":"Public, free, unauthenticated read access to Argus HQ's FDA enforcement database: warning letters, recalls, drug approvals, Form 483 inspections, and company enforcement histories. Every record is AI-summarized and cited back to the original FDA.gov source. No API key required.","version":"1.0.0","contact":{"name":"Argus HQ","email":"hello@argushq.ai","url":"https://argushq.ai"},"license":{"name":"Underlying FDA data: public domain (FDA.gov). Argus HQ summaries: see /methodology.","url":"https://argushq.ai/methodology"}},"servers":[{"url":"https://argushq.ai","description":"Production"}],"security":[],"tags":[{"name":"dataset","description":"Bulk dataset export"},{"name":"warning-letters","description":"FDA Warning Letters"},{"name":"recalls","description":"FDA drug/device recalls"},{"name":"approvals","description":"FDA drug approvals"},{"name":"companies","description":"Company enforcement rollups"},{"name":"feeds","description":"RSS feeds per content stream"}],"paths":{"/data/enforcement-index.json":{"get":{"tags":["dataset"],"summary":"Full enforcement dataset index","description":"Bulk JSON export of every published warning letter, recall, approval, and 483 inspection Argus HQ has indexed, with canonical URLs, dates, and classification metadata.","operationId":"getEnforcementIndex","responses":{"200":{"description":"The full dataset index","content":{"application/json":{"schema":{"type":"array","items":{"type":"object"}}}}}}}},"/api/warning-letter/{slug}.json":{"get":{"tags":["warning-letters"],"summary":"Get a single warning letter record by slug","operationId":"getWarningLetter","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Warning letter record","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Not found"}}}},"/api/recall/{slug}.json":{"get":{"tags":["recalls"],"summary":"Get a single recall record by slug","operationId":"getRecall","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Recall record","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Not found"}}}},"/api/approval/{slug}.json":{"get":{"tags":["approvals"],"summary":"Get a single drug approval record by slug","operationId":"getApproval","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Approval record","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Not found"}}}},"/api/company/{slug}.json":{"get":{"tags":["companies"],"summary":"Get a company's full FDA enforcement rollup by slug","operationId":"getCompany","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Company enforcement rollup","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Not found"}}}},"/feed/warning-letters.xml":{"get":{"tags":["feeds"],"summary":"RSS feed — FDA Warning Letters","operationId":"getWarningLetterFeed","responses":{"200":{"description":"RSS 2.0 XML feed","content":{"application/rss+xml":{"schema":{"type":"string"}}}}}}},"/feed/recalls.xml":{"get":{"tags":["feeds"],"summary":"RSS feed — FDA recalls","operationId":"getRecallFeed","responses":{"200":{"description":"RSS 2.0 XML feed","content":{"application/rss+xml":{"schema":{"type":"string"}}}}}}},"/feed/approvals.xml":{"get":{"tags":["feeds"],"summary":"RSS feed — FDA drug approvals","operationId":"getApprovalFeed","responses":{"200":{"description":"RSS 2.0 XML feed","content":{"application/rss+xml":{"schema":{"type":"string"}}}}}}}}}