openfda_recall_getter
Retrieve comprehensive FDA drug recall details, including product description, reason, distribution pattern, quantity, firm actions, and event timeline, using a specific recall number.
Instructions
Get detailed FDA drug recall information for a specific recall.
Returns complete recall details including:
- Full product description and code information
- Complete reason for recall
- Distribution pattern and locations
- Quantity of product recalled
- Firm information and actions taken
- Timeline of recall events
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Optional OpenFDA API key (overrides OPENFDA_API_KEY env var) | |
recall_number | Yes | FDA recall number |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional OpenFDA API key (overrides OPENFDA_API_KEY env var)",
"title": "Api Key"
},
"recall_number": {
"description": "FDA recall number",
"title": "Recall Number",
"type": "string"
}
},
"required": [
"recall_number"
],
"title": "openfda_recall_getterArguments",
"type": "object"
}