openfda_label_getter
Retrieve complete FDA drug label information by set ID, including indications, dosing, warnings, pharmacology, and manufacturing details. Specify sections for targeted data or use default key sections.
Instructions
Get complete FDA drug label information by set ID.
Retrieves the full prescribing information including:
- Complete indications and usage text
- Detailed dosing instructions
- All warnings and precautions
- Clinical pharmacology and studies
- Manufacturing and storage information
Specify sections to retrieve specific parts, or leave empty for default key sections.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Optional OpenFDA API key (overrides OPENFDA_API_KEY env var) | |
sections | No | Specific sections to retrieve (default: key sections) | |
set_id | Yes | Label set ID |
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"
},
"sections": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Specific sections to retrieve (default: key sections)",
"title": "Sections"
},
"set_id": {
"description": "Label set ID",
"title": "Set Id",
"type": "string"
}
},
"required": [
"set_id"
],
"title": "openfda_label_getterArguments",
"type": "object"
}