search_chemicals_by_name
Find chemicals by name or synonym within the SureChEMBL chemical patent database. Specify a chemical identifier and limit results for precise search outcomes.
Instructions
Search for chemicals by name, synonym, or common name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results to return (1-1000, default: 25) | |
name | Yes | Chemical name or synonym to search for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of results to return (1-1000, default: 25)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"name": {
"description": "Chemical name or synonym to search for",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}