search_by_smiles
Search the SureChEMBL chemical patent database by entering a SMILES string to identify relevant chemical structures and retrieve related patent data.
Instructions
Search for chemicals by SMILES structure notation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results to return (1-1000, default: 25) | |
smiles | Yes | SMILES string of the chemical structure |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of results to return (1-1000, default: 25)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"smiles": {
"description": "SMILES string of the chemical structure",
"type": "string"
}
},
"required": [
"smiles"
],
"type": "object"
}