get_compound_synonyms
Retrieve all names and synonyms for a chemical compound by providing its PubChem Compound ID (CID). Enhances search and identification in chemical databases.
Instructions
Get all names and synonyms for a compound
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"
}