curl --request GET \
--url https://api.pictify.io/experiments/api \
--header 'Authorization: Bearer <token>'{
"experiments": [
{
"uid": "exp_abc123",
"slug": "homepage-hero-test",
"type": "ab_test",
"name": "Homepage Hero A/B Test",
"status": "draft",
"variants": [
{
"id": "variant-a",
"weight": 5000,
"name": "New Design",
"templateUid": "<string>",
"variables": {},
"isDefault": false,
"conditions": {
"type": "group",
"operator": "AND",
"children": "<array>",
"property": "<string>",
"ruleOperator": "equals",
"value": "<unknown>"
},
"schedule": {
"startAt": "2023-11-07T05:31:56Z",
"endAt": "2023-11-07T05:31:56Z",
"recurrence": {
"type": "none",
"cronExpression": "<string>",
"timezone": "America/New_York"
}
},
"impressions": 123,
"clicks": 123
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"templateUid": "tmpl_xyz789",
"goalConfig": {
"type": "impressions_only",
"destinationUrl": "<string>"
},
"banditConfig": {
"enabled": false,
"algorithm": "thompson_sampling",
"warmupImpressions": 50,
"recomputeIntervalMinutes": 15
},
"hypothesis": "<string>",
"minimumSampleSize": 1000,
"confidenceThreshold": 0.95,
"minimumRunDays": 7,
"winnerVariantId": "<string>",
"winnerDeclaredAt": "2023-11-07T05:31:56Z",
"fallbackImageUrl": "<string>",
"outputConfig": {
"format": "png",
"quality": 90
}
}
],
"total": 123,
"page": 123,
"limit": 123
}Retrieve all experiments for the authenticated team.
curl --request GET \
--url https://api.pictify.io/experiments/api \
--header 'Authorization: Bearer <token>'{
"experiments": [
{
"uid": "exp_abc123",
"slug": "homepage-hero-test",
"type": "ab_test",
"name": "Homepage Hero A/B Test",
"status": "draft",
"variants": [
{
"id": "variant-a",
"weight": 5000,
"name": "New Design",
"templateUid": "<string>",
"variables": {},
"isDefault": false,
"conditions": {
"type": "group",
"operator": "AND",
"children": "<array>",
"property": "<string>",
"ruleOperator": "equals",
"value": "<unknown>"
},
"schedule": {
"startAt": "2023-11-07T05:31:56Z",
"endAt": "2023-11-07T05:31:56Z",
"recurrence": {
"type": "none",
"cronExpression": "<string>",
"timezone": "America/New_York"
}
},
"impressions": 123,
"clicks": 123
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"templateUid": "tmpl_xyz789",
"goalConfig": {
"type": "impressions_only",
"destinationUrl": "<string>"
},
"banditConfig": {
"enabled": false,
"algorithm": "thompson_sampling",
"warmupImpressions": 50,
"recomputeIntervalMinutes": 15
},
"hypothesis": "<string>",
"minimumSampleSize": 1000,
"confidenceThreshold": 0.95,
"minimumRunDays": 7,
"winnerVariantId": "<string>",
"winnerDeclaredAt": "2023-11-07T05:31:56Z",
"fallbackImageUrl": "<string>",
"outputConfig": {
"format": "png",
"quality": 90
}
}
],
"total": 123,
"page": 123,
"limit": 123
}API key obtained from the Pictify dashboard
Filter by experiment type
ab_test, smart_link, scheduled Filter by status
draft, running, paused, completed Page number
x >= 1Number of results per page
1 <= x <= 100