get-drug-safety-info
Retrieve detailed drug safety information, including warnings, contraindications, interactions, and precautions, using the brand name from OpenFDA's database.
Instructions
Get comprehensive safety information for a drug including warnings, contraindications, drug interactions, and precautions. Use brand name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
drugName | Yes | Drug brand name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"drugName": {
"description": "Drug brand name",
"type": "string"
}
},
"required": [
"drugName"
],
"type": "object"
}