v1

latestOpenAPI 3.0.32026-07-261910783.9 KB
Reporting

report/ab-test

Fetch A/B test metrics split by control and test variants. Requires the reports:read permission.

get/report/ab-test

Query parameters

ab_test_idstring required

A/B test ID to report.

start_timeinteger required

Start of the time range as a Unix timestamp in seconds. The requested range must not exceed 31 days.

end_timeinteger required

End of the time range as a Unix timestamp in seconds. The requested range must not exceed 31 days.

Response

A/B test metrics split by variant.

statusstring nullable

Latest snapshot status (in_progress, directional, achieved, invalidated).

liftnumber double nullable
ci_lownumber double nullable
ci_highnumber double nullable
p_valuenumber double nullable
n_controlinteger nullable
n_testinteger nullable
required_ninteger nullable
chi_squared_pnumber double nullable

Example response

{
  "control": {
    "daily": [
      {
        "date": "2026-03-01"
      }
    ]
  },
  "test": {
    "daily": [
      {
        "date": "2026-03-01"
      }
    ]
  }
}