Skip to content

The Experiment Result Object

An object that represents the result of an experiment, including the charts that visualize variant performance.

  • id required number

    Numeric ID of the experiment result.

  • experiment_id required number

    Numeric ID of the experiment the experiment result belongs to.

  • charts required object[]

    Array of chart objects representing the experiment results.

    Show child properties
    • kind required string

      Chart type discriminator. Allowed value: bar.

    • title string | null

      Optional chart title.

    • xLabel string | null

      Optional label for the x-axis.

    • yLabel string | null

      Optional label for the y-axis.

    • labels required string[]

      Category labels (one per bar group).

    • series required object[]

      Data series, one per dataset.

      Show child properties
      • label required string

        Series label.

      • data required number[]

        Numeric data points aligned with labels.

  • pushed_at required string

    Timestamp of the most recent push (ISO 8601).

  • created_at required string

    Creation timestamp (ISO 8601).

  • updated_at required string

    Last update timestamp (ISO 8601).

Example Response
{
"experiment_result": {
"id": 123456789,
"experiment_id": 987654321,
"charts": [
{
"kind": "bar",
"title": "Conversion Rate by Variant",
"xLabel": "Variant",
"yLabel": "Rate",
"labels": ["Control", "Variant A"],
"series": [
{
"label": "Conversion rate",
"data": [0.12, 0.15]
}
]
}
],
"pushed_at": "2026-03-15T10:30:00.000Z",
"created_at": "2026-03-15T10:30:00.000Z",
"updated_at": "2026-03-15T10:30:00.000Z"
}
}

Was this page helpful?

What went wrong?

This site uses reCAPTCHA and Google's Privacy Policy (opens in a new window) . Terms of Service (opens in a new window) apply.