openFDA
FDA drug and device open data
Drug labels, adverse events and recalls. Modest rates without a key; register to raise limits.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.fda.gov/drug/label.json?limit=1
{
"meta": {
"disclaimer": "Do not rely on openFDA to make decisions regarding medical care. While we make every effort to ensure that data is accurate, you should assume all results are unvalidated. We may limit or otherwise restrict your access to the API in line with our Terms of Service.",
"terms": "https://open.fda.gov/terms/",
"license": "https://open.fda.gov/license/",
"last_updated": "2026-07-03",
"results": {
"skip": 0,
"limit": 1,
"total": 260158
}
},
"results": [
{
"effective_time": "20210902",
"inactive_ingredient": [
"INACTIVE INGREDIENTS Sucrose"
],
"purpose": [
"USES USES: Temporary Relief - Acne, Boils* * Claims based on traditional homeopathic practice, not accepted medical evidence. Not FDA evaluated."
],
"keep_out_of_reach_of_children": [
"Keep this and all medication out of reach of children"
],
"warnings": [
"WARNINGS This product is to be used for self-limiting conditions If symptoms do not improve in 4 days, or worsen, discontinue use and seek assistance of health professional. As with any drug, if you are pregnant, or nursing a baby, seek professional advice before taking this product. Keep this and all medication out of reach of children Do not use if capseal is broken or missing. Close the cap tightly after use."
],
"questions": [
"QUESTIONS OR COMMENTS www.Rxhomeo.com | 1.888.2796642 | info@rxhomeo.com Rxhomeo, Inc 3200 Commander Dr, Ste 100-W1, Carrollton, TX 75006 USA"
],
"spl_product_data_elements": [
"SILICEA SILICEA SUCROSE SILICON DIOXIDE SILICON DIOXIDE"
],
"openfda": {
"brand_name": [
"SILICEA"
],
"generic_name": [
"SILICEA"
],
"manufacturer_name": [
"Rxhomeo Private Limited d.b.a. Rxhomeo, Inc"
],
"product_ndc": [
"15631-0404"
],
"product_type": [
"HUMAN OTC DRUG"
],
"route": [
"ORAL"
],
"substance_name": [
"SILICON DIOXIDE"
],
"spl_id": [
"ca7bbcc8-2354-375c-e053-2995a90a72a0"
]
}
}
]
}curl "https://api.fda.gov/drug/label.json?limit=1"const res = await fetch("https://api.fda.gov/drug/label.json?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.fda.gov/drug/label.json?limit=1")
print(res.json())/drug/label.json?limit=1PROBEDFDA drug and device open data
/drugDrug — documented GET route.
/drug/1Drug details by ID (example: 1).
/drug?limit=10Drug — documented GET route.
/drug/search?q=testSearch by query parameters.
/drug/label.json?limit=5Label Json — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
openFDA: common questions
Is openFDA free to use?
Yes — openFDA is a free health & food API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does openFDA need an API key?
No — openFDA needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call openFDA from the browser?
Yes — openFDA returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is openFDA up right now?
openFDA is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.