Skip to main content
GET
/
api
/
v1
/
results
/
{result_id}
Get result
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/api/v1/results/{result_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "<string>",
  "experiment_id": "<string>",
  "id": "<string>",
  "metadata": "<unknown>",
  "result_type": "<string>",
  "summary": [
    {
      "binding_strength": "<string>",
      "kd": [
        123
      ],
      "kd_units": "<string>",
      "n_replicates": 1,
      "sequence": {
        "aa_string": "EVQLVESGGGLVQPGGSLRLSCAAS",
        "control": true,
        "customer_preferences": "<unknown>",
        "metadata": "<unknown>",
        "name": "mAb1"
      },
      "target_id": "<string>",
      "result_type": "affinity",
      "koff": 123,
      "kon": 123
    }
  ],
  "title": "<string>",
  "data_package_url": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

result_id
string
required

Unique result identifier

Response

Successfully retrieved result details

Comprehensive result data including analysis results and download links.

Contains full analysis results from completed experiments, including kinetic parameters, summary statistics, and links to download raw data packages for further analysis. Used for both list and detail endpoints.

created_at
string
required

ISO 8601 timestamp of result generation

experiment_id
string
required

Associated experiment identifier

id
string
required

Unique identifier for the result

metadata
any
required
result_type
string
required

Type of analysis result (e.g., "affinity", "thermostability")

summary
object[]
required

Summary of key results (discriminated union by result_type tag)

Discriminated union for result summaries.

Enables type-safe handling of different assay result types (affinity vs thermostability) without forcing incompatible data into a single structure. The result_type tag in serialized JSON identifies the variant.

title
string
required

Human-readable result title

data_package_url
string | null

Data package URL, same as in the Foundry portal