get_target_compounds
Retrieve compounds tested against a specific target from the ChEMBL database, filtered by activity type or result limit, for streamlined research insights.
Instructions
Get compounds tested against a specific target
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_type | No | Activity type filter (e.g., IC50, Ki, Kd) | |
limit | No | Number of results to return (1-1000, default: 25) | |
target_chembl_id | Yes | ChEMBL target ID |
Input Schema (JSON Schema)
{
"properties": {
"activity_type": {
"description": "Activity type filter (e.g., IC50, Ki, Kd)",
"type": "string"
},
"limit": {
"description": "Number of results to return (1-1000, default: 25)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"target_chembl_id": {
"description": "ChEMBL target ID",
"type": "string"
}
},
"required": [
"target_chembl_id"
],
"type": "object"
}