Estimate cost for a small molecule design run
$ boltz-api small-molecule:design estimate-cost
POST/compute/v1/small-molecule/design/estimate-cost
Estimate the billed cost of a small molecule design run without creating any resource or consuming GPU. Includes generation charges implied by the scheduler iteration cap plus structure-scoring charges for each requested molecule.
Parameters
--target: object { entities, bonds, constraints, 3 more }
Target protein sequences for small molecule design or screening.
--chemical-space: optional "enamine_real"
Chemical space to constrain generated molecules. Currently only ‘enamine_real’ (Enamine REAL chemical space) is supported. Additional options may be added in the future.
Estimate cost for a small molecule design run
boltz-api small-molecule:design estimate-cost \
--api-key 'My API Key' \
--num-molecules 10 \
--target '{entities: [{chain_ids: [string], type: protein, value: value}]}'{
"breakdown": {
"application": "structure_and_binding",
"cost_per_unit_usd": "0.0500",
"num_units": 1
},
"disclaimer": "This is an estimate only and may differ from your actual charges. Final billing is based on exact token counts computed at run time. For large library screens, the estimate is extrapolated from a sample and may be less accurate for highly variable inputs.",
"estimated_cost_usd": "0.0500"
}Returns Examples
{
"breakdown": {
"application": "structure_and_binding",
"cost_per_unit_usd": "0.0500",
"num_units": 1
},
"disclaimer": "This is an estimate only and may differ from your actual charges. Final billing is based on exact token counts computed at run time. For large library screens, the estimate is extrapolated from a sample and may be less accurate for highly variable inputs.",
"estimated_cost_usd": "0.0500"
}