Skip to main content
GET
/
api
/
v1
/
targets
List targets
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/api/v1/targets \
  --header 'Authorization: Bearer <token>'
{
  "count": 1,
  "offset": 1,
  "targets": [
    {
      "catalog_number": "<string>",
      "id": "<string>",
      "name": "<string>",
      "vendor_name": "<string>",
      "price_per_sequence_cents": 1
    }
  ],
  "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 (defaults to 50, max 100)

offset
integer<int64>

Number of items to skip from the start (defaults to 0)

Substring matched against product names (case-insensitive)

selfservice_only
boolean

When true, returns only targets with self-service pricing configured

Response

Successfully retrieved target list

Paginated response containing a list of targets

This response structure supports pagination for efficiently browsing large catalogs of available targets.

count
integer<int32>
required

Number of items returned in this response

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

Offset from the start of the result set

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

Array of target summary items for the current page

total
integer<int64>
required

Total number of targets available across all pages

Required range: x >= 0