get_experiment
One experiment in full detail: summary fields plus per-arm budgets, launch state, and metrics, and the final report when the experiment concluded.
Parameters#
| Name | Type | Required | Description |
|---|---|---|---|
experiment_id | string | yes | The experiment id (from list_experiments) |
Returns#
json
{
"experiment": {
"id": "exp_abc123",
"name": "Hook test — summer hero",
"status": "running",
"arms": [
{
"index": 0,
"name": "Control",
"is_control": true,
"status": "active",
"creative_id": "ad_crtv_abc123",
"daily_budget_usd": 30.0,
"launched_at": "2026-07-01T09:05:00+00:00",
"launch_error": null,
"platform_issue": null,
"metrics": { "impressions": 41000, "clicks": 520, "spend_usd": 108.2 }
}
],
"final_report": {}
},
"source": "adlyse.experiments@v1"
}(Summary fields match list_experiments; final_report is empty until the experiment concludes.)
Errors#
error_type | When |
|---|---|
auth_error | Missing / invalid API key |
not_found | No experiment with that id in your org |