One-shot binder design: BoltzGen → Boltz-2 → ProteinMPNN → ranked candidates
BindCraft chains BoltzGen generation, Boltz-2 structural validation, ProteinMPNN refinement, and composite ranking into a single API call. Published wet-lab hit rates range from 10-100%. Submit a target sequence and optional hotspots; receive a ranked set of validated binder candidates with predicted wetlab success probability.
/v1/labs/binder/discoverimport requests
API_KEY = "sk-sci-your-key-here"
# Run BindCraft against PD-L1
resp = requests.post(
"https://scirouter.ai/v1/labs/binder/discover",
json={
"target_sequence": "FTVTVPKDLYVVEYGSNMTIECKFPVEKQLDLAALIVYWEMEDKNIIQFVHGEEDLKVQHSS...",
"hotspots": [42, 67, 89],
"num_designs": 5,
},
headers={"Authorization": f"Bearer {API_KEY}"}
)
job = resp.json()["data"]
result = job["result"]
print(f"Pipeline stages:")
for stage in result["pipeline_stages"]:
print(f" {stage['stage']}: {stage['candidates']} candidates")
print(f"Top 3 designs:")
for d in result["designs"][:3]:
print(f" {d['design_id']}: composite={d['composite_score']} wetlab_pred={d['predicted_wetlab_success']}")Full binder discovery campaign in one API call
Save days of orchestration code for individual model chains
Wetlab-ready candidates for Twist, IDT, or GenScript ordering
Weekend hacker 'I made a binder' projects
Generate novel protein backbones and enzyme scaffolds via denoising diffusion
Design protein binders against any target with predicted binding affinity
Design optimized protein sequences for any 3D backbone
Predict biomolecular complex structures: protein, ligand, DNA, RNA