bc_get_generic_equivalents
Identify generic drug alternatives for brand-name medications by querying ANDA entries, including manufacturers, through verified biomedical data integration.
Instructions
Find generic equivalents for a brand name drug.
This function searches for ANDA (Abbreviated New Drug Application) entries that are generic equivalents of a specified brand name drug.
Args: brand_name (str): The brand name drug to find generics for.
Returns: dict: Generic drug equivalents and their manufacturers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
brand_name | Yes | Brand name drug to find generic equivalents for |
Input Schema (JSON Schema)
{
"properties": {
"brand_name": {
"description": "Brand name drug to find generic equivalents for",
"title": "Brand Name",
"type": "string"
}
},
"required": [
"brand_name"
],
"type": "object"
}