## List protein sequence redesign runs

`client.Protein.SequenceRedesign.List(ctx, query) (*CursorPage[ProteinSequenceRedesignListResponse], error)`

**get** `/compute/v1/protein/sequence-redesign`

List protein sequence redesign runs, optionally filtered by workspace

### Parameters

- `query ProteinSequenceRedesignListParams`

  - `AfterID param.Field[string]`

    Return results after this ID

  - `BeforeID param.Field[string]`

    Return results before this ID

  - `Limit param.Field[int64]`

    Max items to return. Defaults to 100.

  - `WorkspaceID param.Field[string]`

    Filter by workspace ID. Only used with admin API keys. If not provided, defaults to the workspace associated with the API key, or the default workspace for admin keys.

### Returns

- `type ProteinSequenceRedesignListResponse struct{…}`

  Summary of a protein sequence redesign run.

  - `ID string`

    Unique ProteinSequenceRedesignRunSummary identifier

  - `CompletedAt Time`

  - `CreatedAt Time`

  - `DataDeletedAt Time`

    When the input, output, and result data was permanently deleted. Null if data has not been deleted.

  - `Engine BoltzProteinRedesign`

    Deprecated. Use pipeline instead.

    - `const BoltzProteinRedesignBoltzProteinRedesign BoltzProteinRedesign = "boltz-protein-redesign"`

  - `EngineVersion V2026_07_14`

    Deprecated. Use pipeline_version instead.

    - `const V2026_07_14V2026_07_14 V2026_07_14 = "v2026-07-14"`

  - `Error ProteinSequenceRedesignListResponseError`

    - `Code string`

      Machine-readable error code

    - `Message string`

      Human-readable error message

    - `Details any`

      Additional field-level error details keyed by input path, when available.

  - `Livemode bool`

    Whether this resource was created with a live API key.

  - `Pipeline BoltzProteinRedesign`

    - `const BoltzProteinRedesignBoltzProteinRedesign BoltzProteinRedesign = "boltz-protein-redesign"`

  - `PipelineVersion V2026_07_14`

    - `const V2026_07_14V2026_07_14 V2026_07_14 = "v2026-07-14"`

  - `Progress ProteinSequenceRedesignListResponseProgress`

    - `NumProteinsGenerated int64`

      Number of protein binders generated so far

    - `TotalProteinsToGenerate int64`

      Total number of protein binders requested

    - `LatestResultID string`

      ID of the most recently generated result

  - `StartedAt Time`

  - `Status ProteinSequenceRedesignListResponseStatus`

    - `const ProteinSequenceRedesignListResponseStatusPending ProteinSequenceRedesignListResponseStatus = "pending"`

    - `const ProteinSequenceRedesignListResponseStatusRunning ProteinSequenceRedesignListResponseStatus = "running"`

    - `const ProteinSequenceRedesignListResponseStatusSucceeded ProteinSequenceRedesignListResponseStatus = "succeeded"`

    - `const ProteinSequenceRedesignListResponseStatusFailed ProteinSequenceRedesignListResponseStatus = "failed"`

    - `const ProteinSequenceRedesignListResponseStatusStopped ProteinSequenceRedesignListResponseStatus = "stopped"`

  - `StoppedAt Time`

  - `WorkspaceID string`

    Workspace ID

  - `IdempotencyKey string`

    Client-provided idempotency key

### Example

```go
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.Protein.SequenceRedesign.List(context.TODO(), boltzapi.ProteinSequenceRedesignListParams{

  })
  if err != nil {
    panic(err.Error())
  }
  fmt.Printf("%+v\n", page)
}
```

#### Response

```json
{
  "data": [
    {
      "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": {}
      },
      "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"
    }
  ],
  "first_id": "first_id",
  "has_more": true,
  "last_id": "last_id"
}
```
