Skip to content
Go to Boltz API

Design

Generate novel protein binders optimized for binding to a target structure. Binder specifications can be provided directly, uploaded as structure templates, or selected from Boltz-managed curated nanobody and antibody defaults. Results are scored by binding confidence (likelihood of protein-protein interaction) and structure confidence.

Start a protein de novo design run
client.Protein.Design.Start(ctx, body) (*ProteinDesignStartResponse, error)
POST/compute/v1/protein/design
List protein design runs
client.Protein.Design.List(ctx, query) (*CursorPage[ProteinDesignListResponse], error)
GET/compute/v1/protein/design
Get protein design run status
client.Protein.Design.Get(ctx, id, query) (*ProteinDesignGetResponse, error)
GET/compute/v1/protein/design/{id}
Get generated protein designs
client.Protein.Design.ListResults(ctx, id, query) (*CursorPage[ProteinDesignListResultsResponse], error)
GET/compute/v1/protein/design/{id}/results
Stop a running protein design run
client.Protein.Design.Stop(ctx, id) (*ProteinDesignStopResponse, error)
POST/compute/v1/protein/design/{id}/stop
Delete protein design run data
client.Protein.Design.DeleteData(ctx, id) (*ProteinDesignDeleteDataResponse, error)
POST/compute/v1/protein/design/{id}/delete-data
Estimate cost for a protein design run
client.Protein.Design.EstimateCost(ctx, body) (*ProteinDesignEstimateCostResponse, error)
POST/compute/v1/protein/design/estimate-cost