get_dose_response
Retrieve dose-response data and activity profiles for specific compounds using ChEMBL IDs. Analyze compound-target interactions with optional target filtering.
Instructions
Get dose-response data and activity profiles for compounds
Input Schema
Name | Required | Description | Default |
---|---|---|---|
molecule_chembl_id | Yes | ChEMBL compound ID | |
target_chembl_id | No | ChEMBL target ID (optional filter) |
Input Schema (JSON Schema)
{
"properties": {
"molecule_chembl_id": {
"description": "ChEMBL compound ID",
"type": "string"
},
"target_chembl_id": {
"description": "ChEMBL target ID (optional filter)",
"type": "string"
}
},
"required": [
"molecule_chembl_id"
],
"type": "object"
}