search_by_smiles
Find chemical compounds in the PubChem database using a SMILES string for exact-match searches. Retrieve molecular properties and bioassay data with precision.
Instructions
Search for compounds by SMILES string (exact match)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| smiles | Yes | SMILES string of the query molecule |
Input Schema (JSON Schema)
{
"properties": {
"smiles": {
"description": "SMILES string of the query molecule",
"type": "string"
}
},
"required": [
"smiles"
],
"type": "object"
}