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.
List email campaigns
cURL
curl --request GET \ --url https://api.sequenzy.com/api/v1/campaigns \ --header 'Authorization: Bearer <token>'
{ "success": true, "campaigns": [ { "id": "camp_abc123", "name": "April Launch", "subject": "A quick update", "status": "draft", "labels": ["edm"], "scheduledAt": null, "sentAt": null, "createdAt": "2026-05-01T10:30:00Z", "url": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123", "previewUrl": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123?step=review" } ] }
draft
scheduled
sent
sending
cancelled
paused
waiting_approval
curl "https://api.sequenzy.com/api/v1/campaigns?status=draft&label=edm" \ -H "Authorization: Bearer YOUR_API_KEY"