Estimate cost for a protein sequence redesign run
$ boltz-api protein:sequence-redesign estimate-cost
POST/compute/v1/protein/sequence-redesign/estimate-cost
Estimate the cost of a protein sequence redesign run without creating any resource or consuming GPU.
Parameters
--entity: array of object { chain_id, role, type } or object { chain_id, role, type, design_motifs }
Every chain in the input CIF, assigned exactly once as target or binder.
--structure: object { type, url } or object { data, media_type, type }
How to provide a CIF structure file. URLs are auto-detected; base64 uploads must use chemical/x-cif media type.
Estimate cost for a protein sequence redesign run
boltz-api protein:sequence-redesign estimate-cost \
--api-key 'My API Key' \
--entity '{chain_id: x, role: target, type: from_template}' \
--entity '{chain_id: x, role: target, type: from_template}' \
--num-proteins 1 \
--structure '{type: url, url: https://example.com}' \
--type binder{
"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"
}