v1
latestOpenAPI 3.0.32026-07-248519153.1 KBCreate experiment
Create a new A/B experiment in the project resolved from the API key. Defaults to draft status; pass status: 2 to create as active. Variant percent values should sum to 100.
post/experiments
Request body
Example request
{
"name": "Homepage quiz test",
"slug": "homepage-quiz-test",
"status": 2
}Response
Experiment created
Example response
{
"success": true,
"experiment": {
"id": 1,
"project_id": 78,
"name": "Quiz A/B Test",
"slug": "quiz-ab-test",
"type": 1,
"start_at": "2024-01-15T10:00:00Z",
"end_at": "2024-02-15T10:00:00Z",
"status": 2,
"variants": [
{
"model_id": 123,
"name": "Variant A",
"percent": 50
}
],
"experiment_users_count": 150,
"created_at": "2024-01-15T10:00:00Z",
"updated_at": "2024-01-15T10:00:00Z"
}
}