Start a protein sequence redesign run
$ boltz-api protein:sequence-redesign start
POST/compute/v1/protein/sequence-redesign
Create a protein sequence redesign run from selected residues in a fixed input structure
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.
Start a protein sequence redesign run
boltz-api protein:sequence-redesign start \
--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{
"id": "id",
"completed_at": "2019-12-27T18:11:19.117Z",
"created_at": "2019-12-27T18:11:19.117Z",
"data_deleted_at": "2019-12-27T18:11:19.117Z",
"engine": "boltz-protein-redesign",
"engine_version": "v2026-07-14",
"error": {
"code": "code",
"message": "message",
"details": {}
},
"input": {
"entities": [
{
"chain_id": "x",
"role": "target",
"type": "from_template"
},
{
"chain_id": "x",
"role": "target",
"type": "from_template"
}
],
"num_proteins": 1,
"structure": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
},
"type": "binder",
"global_design_filters": [
{
"amino_acids": [
"x"
],
"type": "excluded_amino_acids"
}
],
"idempotency_key": "idempotency_key",
"workspace_id": "workspace_id"
},
"livemode": true,
"pipeline": "boltz-protein-redesign",
"pipeline_version": "v2026-07-14",
"progress": {
"num_proteins_generated": 0,
"total_proteins_to_generate": 1,
"latest_result_id": "latest_result_id"
},
"started_at": "2019-12-27T18:11:19.117Z",
"status": "pending",
"stopped_at": "2019-12-27T18:11:19.117Z",
"workspace_id": "workspace_id",
"idempotency_key": "idempotency_key"
}Returns Examples
{
"id": "id",
"completed_at": "2019-12-27T18:11:19.117Z",
"created_at": "2019-12-27T18:11:19.117Z",
"data_deleted_at": "2019-12-27T18:11:19.117Z",
"engine": "boltz-protein-redesign",
"engine_version": "v2026-07-14",
"error": {
"code": "code",
"message": "message",
"details": {}
},
"input": {
"entities": [
{
"chain_id": "x",
"role": "target",
"type": "from_template"
},
{
"chain_id": "x",
"role": "target",
"type": "from_template"
}
],
"num_proteins": 1,
"structure": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
},
"type": "binder",
"global_design_filters": [
{
"amino_acids": [
"x"
],
"type": "excluded_amino_acids"
}
],
"idempotency_key": "idempotency_key",
"workspace_id": "workspace_id"
},
"livemode": true,
"pipeline": "boltz-protein-redesign",
"pipeline_version": "v2026-07-14",
"progress": {
"num_proteins_generated": 0,
"total_proteins_to_generate": 1,
"latest_result_id": "latest_result_id"
},
"started_at": "2019-12-27T18:11:19.117Z",
"status": "pending",
"stopped_at": "2019-12-27T18:11:19.117Z",
"workspace_id": "workspace_id",
"idempotency_key": "idempotency_key"
}