Skip to main content
GET
/
v1
/
therapeutic-candidates
List therapeutic candidates for a project
curl --request GET \
  --url https://api.example.com/v1/therapeutic-candidates \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "antigen_ids": [
        "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
      ],
      "created_at": "2026-04-23T14:15:00+00:00",
      "drug_class": "naked_antibody",
      "format": "mab",
      "format_metadata": {},
      "id": "c0f5e4b1-a7d2-4e0b-9f8c-1b2d3e4f5a6b",
      "initial_variant_id": "9999eeee-8888-dddd-7777-cccc66665555",
      "name": "anti-HER2 mab",
      "object": "therapeutic_candidate",
      "project_id": "7b4a3c0f-2e6d-4c7a-9e8f-1d3b5a2c4e6f",
      "source_antibody_ids": [
        "1111aaaa-2222-3333-4444-5555bbbbcccc"
      ],
      "updated_at": "2026-04-23T14:15:00+00:00"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project_id
string<uuid>
required
limit
integer
default:50
Required range: 1 <= x <= 200
after
string | null

Response

Successful Response

data
TherapeuticCandidate · object[]
required
has_more
boolean
required
next_cursor
string | null