openFDA Search and Query
Prerequisites
uv: Read the uv skill and follow its Setup instructions to ensure
uv is installed and on PATH.
- User Notification: If .licenses/openfda_database_LICENSE.txt does not
already exist in the workspace root directory then (1) prominently notify
the user to check the terms at https://open.fda.gov/apis/ and
https://open.fda.gov/license, then (2) create the file recording the
notification text and timestamp.
.env file: Make sure the .env file exists in your home directory.
Create one if it does not exist.
FDA_API_KEY (optional but recommended): Raises the daily request limit
from 1,000 to 120,000. The skill works without it, but an agent can easily
exhaust the keyless limit in a single session. You can register for a free
key at https://open.fda.gov/apis/authentication/. You MUST use the safe
credentials protocol in the credentials skill to check for and request
this key if this skill looks relevant to the user's request.
Core Rules
Use the Wrapper: ALWAYS execute the provided helper scripts to query the
database rather than accessing the database directly. The scripts
automatically enforce the required rate limit gracefully.
Rate Limiting: Respect openFDA rate limits. Without API key: 240
requests/min, 1,000 requests/day per IP. With API key: 240 requests/min,
120,000 requests/day per key. Always set an API key before running
multi-query workflows.
Warning: An automated agent can easily exhaust the 1,000-request daily
limit in a single research session. Always set an API key before running
multi-query workflows.
You MUST use the safe credentials protocol in the credentials skill to
help the user add FDA_API_KEY to their .env file if this skill looks
relevant to the user's request. The script will emit a warning to stderr if no
API key is detected.
Always Use --output: All subcommands require --output <file> to
write results to a file. This prevents large output becoming overwhelming.
Use jq or code to read the output file.
Notification: If this skill is used, ensure this is mentioned in the
output.
Utility Script
Single script for all operations:
uv run scripts/openfda_query.py {search,count,download} --output <file> [options]
1. Search
Search any of the 28 endpoints and save JSON results to a file.
uv run scripts/openfda_query.py search \
--category drug --endpoint event \
--search "patient.drug.medicinalproduct:aspirin" \
--limit 5 --output /tmp/fda_results.json
Stdout prints a compact summary:
{"status": "success", "output": "/tmp/fda_results.json", "results_in_file": 5, "total_matching": 601477}
Options:
--output: Output file for full JSON results (required).
--category: API category — drug, device, food, tobacco, other,
animalandveterinary, cosmetic, transparency.
--endpoint: Endpoint within the category (e.g., event, label, 510k).
See references/api_endpoints.md for full
list.
--search: Query string (e.g.,
patient.drug.medicinalproduct:aspirin+AND+serious:1).
--sort: Sort field and order (e.g., receivedate:desc).
--limit: Max results (default 10, max 1000).
--skip: Pagination offset (default 0).
--api_key: API key (also reads FDA_API_KEY env var).
2. Count
Count unique values of a field within matching results.
uv run scripts/openfda_query.py count \
--category drug --endpoint event \
--search "patient.drug.medicinalproduct:aspirin" \
--count_field "patient.reaction.reactionmeddrapt.exact" \
--summary 10 --output /tmp/aspirin_reactions.json
Stdout prints a summary with the top 5 terms. Full data is in the output file.
Additional options:
--count_field: Field to count (append .exact for whole-phrase counting).
--summary N: Return only the top N most frequent terms. Use this to avoid
flooding the context with hundreds of infrequent terms.
3. Download
Download multiple pages of results to a file.
uv run scripts/openfda_query.py download \
--category drug --endpoint event \
--search "patient.drug.medicinalproduct:aspirin" \
--limit 100 --max_pages 5 \
--output /tmp/aspirin_events.json
Additional options:
--max_pages: Maximum pages to fetch (default 10).
--all_results: Automatically paginate to fetch all matching results.
Safety cap of 25,000 records maximum per download to prevent runaway
downloads and prevent excessive API usage.
Tip: Common drugs can have excessive reports. Use a date range (e.g.,
receivedate:[20250101+TO+20250131]) to limit the volume of download.
Entity Resolution: Using .exact for Precision
When searching for specific product names, drug names, or categorical terms,
always use the .exact suffix on the field to get exact-match results. Without
it, the API tokenizes multi-word values and returns noisy partial matches.
# Precise: matches only "ADVIL"
uv run scripts/openfda_query.py search --category drug --endpoint label \
--search 'openfda.brand_name.exact:"ADVIL"' \
--limit 5 --output /tmp/advil_label.json
Note: Many brand names in the FDA database include variant suffixes (e.g.,
"TYLENOL Extra Strength" rather than just "TYLENOL"). If an .exact search
returns 0 results, try without .exact to see the available brand name
variants, then re-query with the full exact name.
The .exact suffix is also required when using --count_field to aggregate
whole phrases instead of individual words.
MedDRA Term Resolution
openFDA adverse event data uses MedDRA (Medical Dictionary for Regulatory
Activities) terms for reactions. The API reports Preferred Terms (PTs) but
does not provide the MedDRA hierarchy (System Organ Class, High Level Terms,
etc.).
Note: MedDRA is a proprietary ontology and is not indexed in the
EMBL-EBI OLS. To approximate MedDRA hierarchy lookups, use the Human
Phenotype Ontology (HP) or NCI Thesaurus (NCIT) as proxy ontologies —
they cross-reference MedDRA IDs and provide parent/ancestor relationships.
# Step 1: Get top reactions from openFDA
uv run scripts/openfda_query.py count \
--category drug --endpoint event \
--search "patient.drug.medicinalproduct:metformin" \
--count_field "patient.reaction.reactionmeddrapt.exact" \
--summary 5 --output /tmp/metformin_reactions.json
# Step 2: Look up the top reaction term using a biomedical ontology service
# skill (e.g. embl-ebi-ols skill).
# MedDRA is not available in OLS; use the Human Phenotype Ontology (HP) or
# NCI Thesaurus (NCIT) as a proxy to find the hierarchical classification of
# the reaction term.
Available Endpoints (28 total)
Category to endpoint mapping:
drug: event, label, ndc, enforcement, drugsfda, shortages
device: 510k, classification, enforcement, event, pma, recall,
registrationlisting, udi, covid19serology
food: enforcement, event
tobacco: problem, researchpreventionads, researchdigitalads,
researchsmokefree
other: historicaldocument, nsde, substance, unii
animalandveterinary: event
cosmetic: event
transparency: crl
Reference
- Query syntax and all endpoints: See
references/api_endpoints.md for field names,
search syntax, date ranges, and boolean operators.
Recipes
Common query patterns for drugs, devices, foods, tobacco, cosmetics, animal and
veterinary products, substances, transparency data, adverse events, recalls,
labeling, approvals, shortages, 510(k) clearances, NDC lookups, any FDA safety
or regulatory data query, and more. See
references/recipes.md for the full recipes.
Workflow
- Search for records using
search with --output. Read the output file.
- Use
count with --summary 10 --output to summarize field distributions.
- Use
download (with --all_results for exhaustive pulls) to fetch larger
datasets.
- Read and analyze the output file using standard tools.
- For MedDRA term hierarchy questions, use a biomedical ontology service skill
(e.g. EMBL-EBI OLS skill with the HP or NCIT ontology) to look up the term.
1---2name: openfda-database3description: Query, search, and download data from the openFDA API for drugs, devices, foods, tobacco, cosmetics, animal and veterinary products, substances, and transparency data. Use for FDA adverse events, recalls, labeling, approvals, shortages, 510(k) clearances, NDC lookups, and any FDA safety or regulatory data query across all 28 API endpoints.4---56# openFDA Search and Query78## Prerequisites9101. **`uv`**: Read the `uv` skill and follow its Setup instructions to ensure11 `uv` is installed and on PATH.122. **User Notification**: If .licenses/openfda_database_LICENSE.txt does not13 already exist in the workspace root directory then (1) prominently notify14 the user to check the terms at https://open.fda.gov/apis/ and15 https://open.fda.gov/license, then (2) create the file recording the16 notification text and timestamp.173. **`.env` file**: Make sure the `.env` file exists in your home directory.18 Create one if it does not exist.194. **`FDA_API_KEY`** (optional but recommended): Raises the daily request limit20 from 1,000 to 120,000. The skill works without it, but an agent can easily21 exhaust the keyless limit in a single session. You can register for a free22 key at https://open.fda.gov/apis/authentication/. You **MUST** use the safe23 credentials protocol in the `credentials` skill to check for and request24 this key if this skill looks relevant to the user's request.2526## Core Rules2728- **Use the Wrapper**: ALWAYS execute the provided helper scripts to query the29 database rather than accessing the database directly. The scripts30 automatically enforce the required rate limit gracefully.3132- **Rate Limiting**: Respect openFDA rate limits. Without API key: 24033 requests/min, 1,000 requests/day per IP. With API key: 240 requests/min,34 120,000 requests/day per key. Always set an API key before running35 multi-query workflows.3637> **Warning**: An automated agent can easily exhaust the 1,000-request daily38> limit in a single research session. Always set an API key before running39> multi-query workflows.4041> You **MUST** use the safe credentials protocol in the `credentials` skill to42> help the user add `FDA_API_KEY` to their `.env` file if this skill looks43> relevant to the user's request. The script will emit a warning to stderr if no44> API key is detected.4546- **Always Use `--output`**: All subcommands require `--output <file>` to47 write results to a file. This prevents large output becoming overwhelming.48 Use jq or code to read the output file.4950- **Notification**: If this skill is used, ensure this is mentioned in the51 output.5253## Utility Script5455**Single script for all operations:**5657```bash58uv run scripts/openfda_query.py {search,count,download} --output <file> [options]59```6061### 1. Search6263Search any of the 28 endpoints and save JSON results to a file.6465```bash66uv run scripts/openfda_query.py search \67 --category drug --endpoint event \68 --search "patient.drug.medicinalproduct:aspirin" \69 --limit 5 --output /tmp/fda_results.json70```7172Stdout prints a compact summary:7374```json75{"status": "success", "output": "/tmp/fda_results.json", "results_in_file": 5, "total_matching": 601477}76```7778*Options:*7980- `--output`: Output file for full JSON results (required).81- `--category`: API category — `drug`, `device`, `food`, `tobacco`, `other`,82 `animalandveterinary`, `cosmetic`, `transparency`.83- `--endpoint`: Endpoint within the category (e.g., `event`, `label`, `510k`).84 See [references/api_endpoints.md](references/api_endpoints.md) for full85 list.86- `--search`: Query string (e.g.,87 `patient.drug.medicinalproduct:aspirin+AND+serious:1`).88- `--sort`: Sort field and order (e.g., `receivedate:desc`).89- `--limit`: Max results (default 10, max 1000).90- `--skip`: Pagination offset (default 0).91- `--api_key`: API key (also reads `FDA_API_KEY` env var).9293### 2. Count9495Count unique values of a field within matching results.9697```bash98uv run scripts/openfda_query.py count \99 --category drug --endpoint event \100 --search "patient.drug.medicinalproduct:aspirin" \101 --count_field "patient.reaction.reactionmeddrapt.exact" \102 --summary 10 --output /tmp/aspirin_reactions.json103```104105Stdout prints a summary with the top 5 terms. Full data is in the output file.106107*Additional options:*108109- `--count_field`: Field to count (append `.exact` for whole-phrase counting).110- `--summary N`: Return only the top N most frequent terms. Use this to avoid111 flooding the context with hundreds of infrequent terms.112113### 3. Download114115Download multiple pages of results to a file.116117```bash118uv run scripts/openfda_query.py download \119 --category drug --endpoint event \120 --search "patient.drug.medicinalproduct:aspirin" \121 --limit 100 --max_pages 5 \122 --output /tmp/aspirin_events.json123```124125*Additional options:*126127- `--max_pages`: Maximum pages to fetch (default 10).128- `--all_results`: Automatically paginate to fetch all matching results.129 Safety cap of 25,000 records maximum per download to prevent runaway130 downloads and prevent excessive API usage.131132 > **Tip**: Common drugs can have excessive reports. Use a date range (e.g.,133 > `receivedate:[20250101+TO+20250131]`) to limit the volume of download.134135## Entity Resolution: Using .exact for Precision136137When searching for specific product names, drug names, or categorical terms,138always use the `.exact` suffix on the field to get exact-match results. Without139it, the API tokenizes multi-word values and returns noisy partial matches.140141```bash142# Precise: matches only "ADVIL"143uv run scripts/openfda_query.py search --category drug --endpoint label \144 --search 'openfda.brand_name.exact:"ADVIL"' \145 --limit 5 --output /tmp/advil_label.json146```147148> **Note**: Many brand names in the FDA database include variant suffixes (e.g.,149> "TYLENOL Extra Strength" rather than just "TYLENOL"). If an `.exact` search150> returns 0 results, try without `.exact` to see the available brand name151> variants, then re-query with the full exact name.152153The `.exact` suffix is also required when using `--count_field` to aggregate154whole phrases instead of individual words.155156## MedDRA Term Resolution157158openFDA adverse event data uses MedDRA (Medical Dictionary for Regulatory159Activities) terms for reactions. The API reports **Preferred Terms (PTs)** but160does not provide the MedDRA hierarchy (System Organ Class, High Level Terms,161etc.).162163> **Note**: MedDRA is a proprietary ontology and is **not indexed** in the164> EMBL-EBI OLS. To approximate MedDRA hierarchy lookups, use the **Human165> Phenotype Ontology (HP)** or **NCI Thesaurus (NCIT)** as proxy ontologies —166> they cross-reference MedDRA IDs and provide parent/ancestor relationships.167168```bash169# Step 1: Get top reactions from openFDA170uv run scripts/openfda_query.py count \171 --category drug --endpoint event \172 --search "patient.drug.medicinalproduct:metformin" \173 --count_field "patient.reaction.reactionmeddrapt.exact" \174 --summary 5 --output /tmp/metformin_reactions.json175176# Step 2: Look up the top reaction term using a biomedical ontology service177# skill (e.g. embl-ebi-ols skill).178# MedDRA is not available in OLS; use the Human Phenotype Ontology (HP) or179# NCI Thesaurus (NCIT) as a proxy to find the hierarchical classification of180# the reaction term.181```182183## Available Endpoints (28 total)184185Category to endpoint mapping:186187- `drug`: event, label, ndc, enforcement, drugsfda, shortages188- `device`: 510k, classification, enforcement, event, pma, recall,189 registrationlisting, udi, covid19serology190- `food`: enforcement, event191- `tobacco`: problem, researchpreventionads, researchdigitalads,192 researchsmokefree193- `other`: historicaldocument, nsde, substance, unii194- `animalandveterinary`: event195- `cosmetic`: event196- `transparency`: crl197198## Reference199200- **Query syntax and all endpoints**: See201 [references/api_endpoints.md](references/api_endpoints.md) for field names,202 search syntax, date ranges, and boolean operators.203204## Recipes205206Common query patterns for drugs, devices, foods, tobacco, cosmetics, animal and207veterinary products, substances, transparency data, adverse events, recalls,208labeling, approvals, shortages, 510(k) clearances, NDC lookups, any FDA safety209or regulatory data query, and more. See210[references/recipes.md](references/recipes.md) for the full recipes.211212## Workflow2132141. Search for records using `search` with `--output`. Read the output file.2152. Use `count` with `--summary 10 --output` to summarize field distributions.2163. Use `download` (with `--all_results` for exhaustive pulls) to fetch larger217 datasets.2184. Read and analyze the output file using standard tools.2195. For MedDRA term hierarchy questions, use a biomedical ontology service skill220 (e.g. EMBL-EBI OLS skill with the HP or NCIT ontology) to look up the term.