Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get A/B test details and variants
cURL
curl --request GET \ --url https://api.sequenzy.com/api/v1/ab-tests/{abTestId} \ --header 'Authorization: Bearer <token>'
{ "success": true, "abTest": { "id": "ab_abc123", "name": "Subject test", "status": "draft", "winnerCriteria": "open_rate", "winningVariantId": null, "variants": [ { "id": "var_a", "label": "A", "emailId": "email_abc123", "subject": "Welcome", "previewText": null, "blocks": [], "localizations": [] } ] } }
curl "https://api.sequenzy.com/api/v1/ab-tests/ab_abc123" \ -H "Authorization: Bearer YOUR_API_KEY"