---
title: The Experiment Result Object
description: Schema of an experiment result, including its charts and series data.
url: https://storyblok.com/docs/api/management/experiments/the-experiment-result-object
---

# The Experiment Result Object

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

## Properties

-   `id` (required) (number)
    
    Numeric ID of the experiment result.
    
-   `experiment_id` (required) (number)
    
    Numeric ID of the [experiment](/docs/api/management/experiments/the-experiment-object) 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

```json
{
"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"
}
}
```

## Pagination

-   [Previous: The Experiment Object](/docs/api/management/experiments/the-experiment-object)
-   [Next: Unlink a Story](/docs/api/management/experiments/unlink-a-story)
