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": "2023-11-07T05:31:56Z",
  "experiment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": "<unknown>",
  "result_type": "<string>",
  "summary": [
    {
      "binding_strength": "<string>",
      "kd_units": "<string>",
      "replicates": [
        {
          "replicate": 123,
          "binding_strength": "<string>",
          "kd": 123,
          "koff": 123,
          "koff_method": "<string>",
          "kon": 123,
          "kon_method": "<string>"
        }
      ],
      "sequence": {
        "aa_string": "EVQLVESGGGLVQPGGSLRLSCAAS",
        "control": true,
        "metadata": "<unknown>",
        "name": "mAb1"
      },
      "target_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "result_type": "affinity",
      "kd_log_std": 123,
      "kd_mean": 123,
      "koff_log_std": 123,
      "koff_mean": 123,
      "kon_log_std": 123,
      "kon_mean": 123
    }
  ],
  "title": "<string>",
  "data_package_url": "<string>"
}

Authorizations

Authorization
string
header
required

Biscuit-based bearer token. Obtain tokens from the Adaptyv Portal or via the /tokens endpoint. Tokens encode organization membership and role-based capabilities; the API verifies the token's cryptographic signature and authorization claims before processing requests. Use /tokens/attenuate to create restricted tokens for delegation.

Path Parameters

result_id
string<uuid>
required

Unique result identifier

Response

Result details

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<date-time>
required

ISO 8601 timestamp of result generation

experiment_id
string<uuid>
required

Associated experiment identifier

id
string<uuid>
required

Unique identifier for the result

metadata
any
required

Extended metadata beyond the summary (e.g. instrument info).

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