get_compound_bioactivities
Retrieve detailed bioassay results and activities for a chemical compound by its PubChem CID, with options to filter by activity outcome (active, inactive, inconclusive, or all).
Instructions
Get all bioassay results and activities for a compound
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_outcome | No | Filter by activity outcome (default: all) | |
cid | Yes | PubChem Compound ID (CID) |
Input Schema (JSON Schema)
{
"properties": {
"activity_outcome": {
"description": "Filter by activity outcome (default: all)",
"enum": [
"active",
"inactive",
"inconclusive",
"all"
],
"type": "string"
},
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
}
},
"required": [
"cid"
],
"type": "object"
}