get-drug-details
Retrieve comprehensive drug information using National Drug Code (NDC) to access detailed medication data from FDA, WHO, and medical databases.
Instructions
Get detailed information about a specific drug by NDC (National Drug Code)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ndc | Yes | National Drug Code (NDC) of the drug |
Input Schema (JSON Schema)
{
"properties": {
"ndc": {
"description": "National Drug Code (NDC) of the drug",
"type": "string"
}
},
"required": [
"ndc"
],
"type": "object"
}