Skip to main content
GET
/
api
/
v1
/
sequences
List sequences
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/api/v1/sequences \
  --header 'Authorization: Bearer <token>'
{
  "count": 1,
  "offset": 1,
  "sequences": [
    {
      "aa_preview": "<string>",
      "created_at": "<string>",
      "experiment_code": "<string>",
      "experiment_id": "<string>",
      "id": "<string>",
      "is_control": true,
      "length": 1,
      "name": "<string>"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer<int64>

Maximum number of items to return (default: 50)

offset
integer<int64>

Number of items to skip (default: 0)

experiment_id
string

Filter by experiment UUID

Search in sequence name or amino acid content

Response

Successfully retrieved sequence list

Paginated response containing a list of sequences.

Supports pagination via offset/limit and includes total count for UI navigation.

count
integer<int32>
required

Number of sequences returned in this response

Required range: x >= 0
offset
integer<int32>
required

Number of sequences skipped (offset)

Required range: x >= 0
sequences
object[]
required

Array of sequence summary items for the current page

total
integer<int32>
required

Total number of sequences matching the query (across all pages)

Required range: x >= 0