API
One API for every DMPK endpoint
The REST API and Python SDK expose all eleven models behind a single, versioned interface — built for pipelines, ELNs, and internal screening tools.
API key auth
Simple bearer-token authentication for every request.
Batch predictions
Submit thousands of structures in a single call for screening workflows.
Consistent schema
Every model returns the same prediction, interval, and metadata shape.
install
$ pip install dmpkpredict.py
from dmpk import DMPK
client = DMPK(api_key="YOUR_API_KEY")
result = client.predict(
model="intrinsic-clearance",
smiles="CC(=O)Oc1ccccc1C(=O)O",
)