search_by_target
Find compounds tested against specific biological targets like genes, proteins, or pathways. Filter results by activity type and retrieve relevant bioactivity data from PubChem's chemical database.
Instructions
Find compounds tested against a specific biological target
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| activity_type | No | Type of activity (e.g., IC50, EC50, Ki) | |
| max_records | No | Maximum number of results (1-1000, default: 100) | |
| target | Yes | Target name (gene, protein, or pathway) |
Input Schema (JSON Schema)
{
"properties": {
"activity_type": {
"description": "Type of activity (e.g., IC50, EC50, Ki)",
"type": "string"
},
"max_records": {
"description": "Maximum number of results (1-1000, default: 100)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"target": {
"description": "Target name (gene, protein, or pathway)",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}