v24

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-014382230.2 KB

Get A/B test results

Retrieves the performance metrics for all variations in an A/B test broadcast.

get/api/broadcasts.getTestResults

Query parameters

workspace_idstring required

The ID of the workspace

idstring required

The ID of the broadcast

Response

Test results retrieved successfully

broadcast_idstring

ID of the broadcast

statusstring

Current broadcast status

test_started_atstring date-time nullable

When the test started

test_completed_atstring date-time nullable

When the test completed

variation_resultsobject

Results for each variation, keyed by template_id

recommended_winnerstring nullable

Recommended winning template ID based on metrics

winning_templatestring nullable

Selected winning template ID

is_auto_send_winnerboolean

Whether winner will be automatically sent

Example response

{
  "broadcast_id": "broadcast_12345",
  "status": "testing",
  "recommended_winner": "template_variant_a",
  "winning_template": "template_variant_a",
  "is_auto_send_winner": true
}