List pipeline results from a share link
client.ShareLinks.ListPipelineResults(ctx, pipelineID, params) (*CursorPage[ShareLinkListPipelineResultsResponse], error)
GET/compute/v1/share/{id}/pipelines/{pipelineId}/results
Paginated results for one pipeline exposed by a share link. The response shape matches the authed pipeline-results endpoints exactly. Access is gated by the share-link ID and — for email-mode links — a signed compute-API JWT. Pipeline IDs not covered by the link return 404 indistinguishably from unknown links.
ParametersExpand Collapse
params ShareLinkListPipelineResultsParams
params ShareLinkListPipelineResultsParams
ReturnsExpand Collapse
type ShareLinkListPipelineResultsResponse struct{…}A single generated protein design
type ShareLinkListPipelineResultsResponse struct{…}
A single generated protein design
Artifacts ShareLinkListPipelineResultsResponseArtifacts
Artifacts ShareLinkListPipelineResultsResponseArtifacts
Entities []ShareLinkListPipelineResultsResponseEntityUnionEntities in the designed complex, including designed and fixed input entities.
Entities []ShareLinkListPipelineResultsResponseEntityUnion
Entities in the designed complex, including designed and fixed input entities.
One of the following:
type ShareLinkListPipelineResultsResponseEntityProteinEntity struct{…}
type ShareLinkListPipelineResultsResponseEntityProteinEntity struct{…}
type ShareLinkListPipelineResultsResponseEntityRnaEntity struct{…}
type ShareLinkListPipelineResultsResponseEntityRnaEntity struct{…}
type ShareLinkListPipelineResultsResponseEntityDnaEntity struct{…}
type ShareLinkListPipelineResultsResponseEntityDnaEntity struct{…}
Metrics ShareLinkListPipelineResultsResponseMetricsStructural and binding quality metrics for a designed protein binder
Metrics ShareLinkListPipelineResultsResponseMetrics
Structural and binding quality metrics for a designed protein binder
List pipeline results from a share link
package main
import (
"context"
"fmt"
"github.com/boltz-bio/boltz-api-go"
"github.com/boltz-bio/boltz-api-go/option"
)
func main() {
client := boltzapi.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.ShareLinks.ListPipelineResults(
context.TODO(),
"pipelineId",
boltzapi.ShareLinkListPipelineResultsParams{
ID: "id",
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
{
"data": [
{
"id": "id",
"artifacts": {
"archive": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
},
"structure": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
}
},
"created_at": "2019-12-27T18:11:19.117Z",
"entities": [
{
"chain_ids": [
"string"
],
"type": "protein",
"value": "value",
"cyclic": true,
"modifications": [
{
"residue_index": 0,
"type": "ccd",
"value": "value"
}
]
}
],
"metrics": {
"binding_confidence": 0,
"helix_fraction": 0,
"iptm": 0,
"loop_fraction": 0,
"min_interaction_pae": 0,
"sheet_fraction": 0,
"structure_confidence": 0
},
"warnings": [
{
"code": "code",
"message": "message"
}
]
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}Returns Examples
{
"data": [
{
"id": "id",
"artifacts": {
"archive": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
},
"structure": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
}
},
"created_at": "2019-12-27T18:11:19.117Z",
"entities": [
{
"chain_ids": [
"string"
],
"type": "protein",
"value": "value",
"cyclic": true,
"modifications": [
{
"residue_index": 0,
"type": "ccd",
"value": "value"
}
]
}
],
"metrics": {
"binding_confidence": 0,
"helix_fraction": 0,
"iptm": 0,
"loop_fraction": 0,
"min_interaction_pae": 0,
"sheet_fraction": 0,
"structure_confidence": 0
},
"warnings": [
{
"code": "code",
"message": "message"
}
]
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}