get_external_references
Retrieve external database links for a PubChem compound, including ChEMBL, DrugBank, and KEGG, by providing the CID to access cross-referenced information.
Instructions
Get links to external databases (ChEMBL, DrugBank, KEGG, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | Yes | PubChem Compound ID (CID) |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
}
},
"required": [
"cid"
],
"type": "object"
}