get_compound_info
Retrieve comprehensive details for a chemical compound using its PubChem CID in formats like JSON, SDF, or XML. Ideal for accessing molecular properties and bioassay data.
Instructions
Get detailed information for a specific compound by PubChem CID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | Yes | PubChem Compound ID (CID) | |
format | No | Output format (default: json) |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
},
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"sdf",
"xml",
"asnt",
"asnb"
],
"type": "string"
}
},
"required": [
"cid"
],
"type": "object"
}