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 sequence metadata, nodes, and editable email steps
cURL
curl --request GET \ --url https://api.sequenzy.com/api/v1/sequences/{sequenceId} \ --header 'Authorization: Bearer <token>'
{ "success": true, "sequence": { "id": "seq_abc123", "name": "Welcome Sequence", "status": "draft", "trigger": "trigger_list", "emails": [ { "nodeId": "node_abc123", "emailId": "email_abc123", "stepNumber": 1, "name": "Welcome Sequence - Email 1", "subject": "Welcome to Acme", "previewText": null, "blocks": [] } ], "createdAt": "2026-04-20T10:00:00.000Z", "enrichmentStatus": "complete", "emailCount": 1, "enrichedCount": 1 } }
curl "https://api.sequenzy.com/api/v1/sequences/seq_abc123" \ -H "Authorization: Bearer seq_live_xxx"