Questions and answers surrounding the U.S. Food and Drug Administration's OpenFDA program.

learn more… | top users | synonyms

1
vote
1answer
25 views

OPenFDA API - querying on dosage_and_administration_table _exists_ not working

I was planning to get the results where brand name is aspirin and whose drug result has property dosage_and_administration_table. So I did this https://api.fda.gov/drug/label.json?search=brand_name:...
1
vote
1answer
38 views

Running openFDA api locally

I am trying to do some classification and clustering on the openFDA dataset. I started by downloading a year's worth of data and realized I run into system limits and would need to solve for that. ...
1
vote
1answer
35 views

Python crashing when trying to read zipped json files [closed]

I downloaded the 2015 adverse drug events data from openfda and I want to run some analysis with python. I am a python newbie, but have become comfortable with the scikit-learn libraries, but I cannot ...
3
votes
1answer
28 views

Query OpenFDA by UPC

I am trying to query OpenFDA by UPC but the API keeps returning "No Matched Found". I assume this works in the same way as product NDC, which is returning as expected when I try something like this: ...
3
votes
1answer
26 views

Endpoint not returning expected data based on NDC package code

I recently stumbled upon openFDA and it seems to be the perfect answer for relaying drug brand name information to our users based on a provided NDC code. The issue I am running into however is that ...
2
votes
1answer
50 views

Is there a way to query openFDA for drug pair interaction?

openFDA is awesome particularly the drug/event database. But I can't find a way to query whether a particular drug (e.g. xanax) has any drug interaction warning, precaution, or contraindication. ...
3
votes
1answer
44 views

Adverse Events Reported Term + MEDDRA coding dataset

I just wanted to kindly ask if anyone is aware about the presence of a repository of datasets containing both the Reported Term (usually collected in the CRF as free text by the investigator) and its ...
1
vote
1answer
18 views

is there a search class for whether the drug was taken in hospital or not?

is there a search class in open FDA Drug Adverse Event Report Browser for whether the drug was taken in hospital or not?
2
votes
2answers
76 views

openFDA: Is There an Open Database of Which Drugs are Approved for the Treatment of Which Illnesses?

Is there an open database which lists FDA or EMA approvals of drugs for the treatment of specific illnesses?
3
votes
1answer
46 views

openFDA - update notice:: further clarification

A little more clarification, please. I see the Q/A here openFDA endpoints not updated in over 2 months. Has this project been abandoned? regarding the bug and update status. Did the bug and will ...
2
votes
1answer
97 views

openFDA endpoints not updated in over 2 months. Has this project been abandoned?

We are specifically interested in the "Devices › Adverse Events" data which until recently seemed to get updated monthly, usually within 2 weeks of the end of the month. We realize that this is a ...
3
votes
2answers
159 views

I get 'certificate verify failed' URLError when trying to download data from openFDA

I'm using Python and pandas to try to download the data in the FDA's 'Adverse drug event reports since 2004'. Here is my code: import pandas as pd import json from pandas.io.json import ...
3
votes
1answer
94 views

OpenFDA API - how to query on drug name with more than one word

Try running this query: https://api.fda.gov/drug/label.json?&search=brand_name:tylenol+number+three I've also tried the %20 instead of '+' and it didn't work either. I'm trying to pull up the ...
2
votes
1answer
78 views

openFDA: 510k update frequency

How often is openFDA 510k database updated? Through the FDA website I see a new batch of 510k clearances from June 2016. However, openFDA has not been updated since May.
3
votes
1answer
39 views

Writing a script to mimic openFDA's count query

I downloaded all of the JSON files from openFDA (2004Q1-2015Q4) so I could run my own python scripts to mimic the count query provided by the API. My goal is to get the counts of adverse reactions ...
3
votes
1answer
31 views

openFDA API - ingredient and product name queries give bad results - is it me?

Try running this query: https://api.fda.gov/drug/label.json?&search=generic_name=hydrocodone - returns Oxycontin, not Norco or other hydrocodone containing drugs https://api.fda.gov/drug/label....
1
vote
1answer
56 views

How do I run openFDA API locally?

I'm currently working on a project that would greatly be assisted by running the openFDA API locally. I tried to follow the READMEs but I can't get it to work. Thank you!
3
votes
1answer
45 views

Where to save the event JSON files for openFDA locally?

I just downloaded the openFDA source code from the github, as well as all the event endpoint JSON files, and I wanted to know which directory to save the JSON endpoints. Some also seemed to have the ...
1
vote
1answer
54 views

For openFDA, is there a way to get the counts of every drug for a particular adverse event?

I'm working on calculating a PRR, but instead of using a drug-adverse event pair, I'm looking at the drug-SOC (system organ class) pair, which needs all the reports of every drug-ADE pair within a ...
2
votes
1answer
56 views

Setting up a private instance

In general, I want to use OpenFDA to look at the overlap between FDA drug data and cosmetics ingredients, primarily using the drug event and drug label data sets. Device and food questions might arise ...
4
votes
2answers
47 views

Getting updated date for all the endpoints through an API

I am trying to build a code that download all files from the provided end points. However, I do not want to download the files everytime and will only download the files if the data in the endpoints ...
2
votes
1answer
187 views

Getting Started with the OpenFDA API

I am totally lost with the OpenFDA API. I've downloaded the API from Github, run the bootstrap.sh, run python setup.py install, and I have no clue what to do now. My specific questions: 1. ...
3
votes
1answer
28 views

De-duping follow-up reports

In openFDA's source code documentation it's said that the FAERS pipeline includes a procedure for de-duping follow-up reports. I don't find in source code where it happens. What it means? Only last ...
1
vote
1answer
45 views

Getting drug register information through API

I am trying to find the drug registration info. Is there any FDA API available to gather drug register data set. Please suggest.
2
votes
2answers
41 views

Duplicates in device recall data?

Is it just me or almost all of the device recall data duplicated in OpenFDA? For example, why are there 4 nearly identical entries for recall "Z-3261-2011" when a query for this recall number is made ...
3
votes
1answer
71 views

Download all drug adverse events

I downloaded the adverse events quarterly data files from the FEARS website and I merged and cleaned them to use them in my next analytics pipeline. I was asked if I can download all the drug adverse ...
3
votes
0answers
57 views

.How can I get the list of drugs that interact with a particular drug in openFDA

I am trying to get a list of ingredients/drugs that might interact with a particular drug or check if a list of drugs might interact with each other. How can I achieve it using openFDA API.
1
vote
0answers
40 views

Getting the complete list of AEs x drug with openFDA

Can one get ALL AEs per single drug instead of most frequent ones? Example Ibrutinib 2,921 reports; AEs reported 1,696 in 10 categories. How can I get the remaining list of less frequent events up to ...
3
votes
1answer
126 views

Synchronize with the openFDA S3 bucket

When i'm try to synchronize my s3 bucket with openFDA S3 bucket ( aws s3 sync s3://my-bucket s3://download.open.fda.gov/), error occurce: "A client error (AccessDenied) occurred when calling the ...
1
vote
1answer
44 views

OPEN FDA spam phone calls

I am receiving unwanted voice messages detailing several FDA initiatives from 909-394-5110. It talks about inspections detecting illegal drugs and also a short blurb about Open FDA and natural gas ...
2
votes
0answers
36 views

Discrepancy between OpenFDA and FAERS

I noticed there are discrepancies in counts of events for a given drug when querying OpenFDA for a given quarter (I tried q1 2014) and trying to get a matching answer from the downloadable FAERS ...
2
votes
1answer
23 views

openFDA Device Adverse Events missing for Dec, 2015 (as of 19-Jan-2016)

There still appears to be a problem with the data for Dec, 2015... the following query returns zero results as of now: http://api.fda.gov/device/event.json?search=date_received:[20151201+TO+20151231]
3
votes
0answers
59 views

Is there an API for drug approval packages from the FDA?

I am building an application where we'd like to reuse information from drug approval packages (Example). The FDA API does not have a query interface for drug approval packages. Is there an ...
4
votes
1answer
185 views

API for getting data from a disease name?

For example, entering: "lung Adenocarcinoma" should return (JSON preferably) large chunks of information about that disease, such as definition, alternate names, validity, treatments, signs, etc.. I'...
2
votes
1answer
39 views

OpenFDA report_date for Food/Enforcement doesn't seem to work after 9/23/2015

I am getting 0 results for any ranges after 9/23/2015. See last day of results here: https://api.fda.gov/food/enforcement.json?search=report_date:[20150923+TO+20160106] No results from 9/24 on: ...
4
votes
3answers
1k views

List of United States cities

I'm looking to get some data of this page http://www.greatschools.org/california/san-francisco/schools/?gradeLevels=e&page=2 To do it I need to create the links in this format: http://www....
1
vote
1answer
47 views

Is there a OpenFDA API Basics for medical devices?

Reading the documentation of OpenFDA fields, we are linked to the API Basics reference guide. Every time that I try to find information about API fields (including other questions on this site) I end ...
3
votes
2answers
57 views

Is it possible to get a complete list of medical devices through OpenFDA?

I was trying to get a complete list of medical devices through openFDA, but then I came to realize that through that data set the list can never be complete, since I can only get devices involved in a ...
2
votes
1answer
50 views

Is there a openFDA Data Pipeline version supported for Windows?

Everything in the openFDA data pipeline API seems Linux-centric, including several dependencies; dependencies require me to compile the source because packages only exist for Linux (like leveldb). I ...
2
votes
1answer
112 views

NDC's in Enforcement Reports - Package vs Product vs Product Description?

In queries such as this, for example, notice some results include a product_ndc and package_ndc, while others include a NDC in the product_description. Some include no NDC identifier in any field. ...
1
vote
1answer
20 views

Is there anyway to get the NDC code for a drug from the drug enforcement report fields?

Given the fields acquired from a drug enforcement report: country reason_for_recall classification recall_number recalling_firm initial_firm_notification code_info product_quantity event_id ...
1
vote
1answer
33 views

Approval dates for drugs from FDA?

OpenFDA is awesome! I wish we had anything similar here in the UK. Is there a way to get drug approval dates via the API? I'm interested in knowing what date a drug was approved by the FDA. I ...
3
votes
2answers
60 views

Can someone explain “openfda data is not for clinical use”?

I am looking for OTC Labelling information and was curious how I might be able to use the information in my applications since it says the data is not for clinical use.
3
votes
1answer
39 views

list of approved active ingredients

If I wanted to define how drugs and cosmetics chemicals/ingredients overlap, could I use openFDA to help answer the drug part of that comparison? Would I be able to take the contents of all the ...
2
votes
1answer
32 views

How quickly after FDA approval will adverse events be listed on openFDA?

I cannot seem to find information on what the lag time is between FDA approval (drug on market) and results for adverse events being listed on openFDA. Does anyone have an idea of the timeline? For ...
1
vote
0answers
24 views

openFDA - Recalls - quantity in commerce

Any reason this field is not available on openFDA? It can be seen on individual queries on the website: (random example) https://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfres/res.cfm?id=131707 Are ...
2
votes
1answer
33 views

openFDA Device Adverse Events Data out of date

Does anyone know why the Device Adverse Events data available via the openFDA API has not been updated since 01-Jul-2015?
1
vote
1answer
39 views

Display only reactions where drugcharacterization=1 (drug was suspect drug)

I'm trying to get the number of reactions for a certain drug, but only where the drug was classified as suspect drug (drugcharacterization=1). I tried: http://api.fda.gov/drug/event.json?search=...
2
votes
1answer
59 views

Does the openFDA drug adverse events dataset (or any other dataset) have a geographic dimension?

I want to produce visualizations of PRR and ROR of drug adverse events using openFDA data using d3 and shiny. I want to build interactive map view (map of the US with PRR values by state, for example)....
1
vote
0answers
28 views

Inconsistent fields

This question is related to http://stackoverflow.com/questions/32363315/gson-fields-that-sometimes-are-strings-and-others-arrays I'm parsing json with Gson but I'm struggling with the data I'm ...