Which drugs did the FDA just approve, and who is the sponsor? Bulk feed over openFDA Drugs
Which drugs did the FDA just approve, and who is the sponsor? Bulk feed over openFDA Drugs@FDA approvals, newest-first by approval date — a new approval or supplement is a commercial-launch moment. Cursor-paginated up to 1000/page, filterable by sponsor, submission type (ORIG/SUPPL), marketing status, or since. Rows carry the sponsor, application number/type, brand names, active ingredients, dosage/route, and marketing status. Observational public records, never a clinical recommendation.
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": {
"since": "2026-06-01",
"sponsor": "Hikma",
"submission_type": "ORIG"
},
"type": "http"
},
"output": {
"example": {
"basis": "openFDA Drugs@FDA approvals, one row per application newest-first by latest_approval_date. Observational public records as filed — never a clinical recommendation.",
"feed": "fda-drug-approvals",
"page": {
"has_more": true,
"limit": 500,
"next_cursor": "eyJkIjoiMjAyNi0wNi0wMyIsImsiOiJvc2hhOjMxOTAwMTIzNCJ9",
"returned": 500
},
"query": {
"marketing_status": "all",
"since": "2026-06-01",
"sponsor": "all",
"submission_type": "all"
},
"rows": [
{
"active_ingredients": "ADAPALENE; BENZOYL PEROXIDE",
"application_number": "ANDA217384",
"application_type": "ANDA",
"as_published_date": "2026-07-18",
"brand_names": "ADAPALENE AND BENZOYL PEROXIDE",
"dosage_forms": "GEL",
"entity_id": null,
"event_date": "2026-07-22",
"event_key": "drug:ANDA217384",
"latest_approval_date": "2026-07-22",
"marketing_status": "Prescription",
"original_approval_date": "2026-07-22",
"product_count": 1,
"routes": "TOPICAL",
"sponsor": "AUROBINDO PHARMA LTD",
"submission_type": "ORIG"
}
]
},
"type": "json"
}
},
"routeTemplate": "/v1/feeds/fda-drug-approvals",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"cursor": {
"description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
"examples": [
"eyJkIjoiMjAyNi0wNy0yMiIsImsiOiJBTkRBMDc2NTU4In0"
],
"type": "string"
},
"limit": {
"description": "Rows per page (default 500, cap 1000).",
"examples": [
500
],
"type": "integer"
},
"marketing_status": {
"description": "Marketing status fragment (Prescription, Over-the-counter, Discontinued...).",
"examples": [
"Prescription"
],
"type": "string"
},
"since": {
"description": "Only approvals dated on or after this date (YYYY-MM-DD).",
"examples": [
"2026-06-01"
],
"type": "string"
},
"sponsor": {
"description": "Sponsor company name fragment.",
"examples": [
"Hikma"
],
"type": "string"
},
"submission_type": {
"description": "ORIG (original approval) | SUPPL (supplement).",
"examples": [
"ORIG"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/feeds/fda-drug-approvals" # -> 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/fda-drug-approvals");
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/fda-drug-approvals")
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/14567.json, and this resource appears in /discovery/resources and /discovery/search.