Skip to main content
GET
/
api
/
v1
/
campaigns
/
{campaignId}
Get Campaign
curl --request GET \
  --url https://api.sequenzy.com/api/v1/campaigns/{campaignId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "campaign": {
    "id": "camp_abc123",
    "name": "April Launch",
    "subject": "A quick update",
    "preheader": "Latest product news",
    "status": "draft",
    "labels": ["edm", "launch"],
    "blocks": [],
    "campaignData": null,
    "computedLists": [],
    "replyProfileId": "reply_abc123",
    "replyToName": "Support",
    "replyToEmail": "support@example.com",
    "scheduledAt": null,
    "sentAt": null,
    "createdAt": "2026-05-01T10:30:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

Get a campaign and its editable email blocks.

Request

campaignId
string
required
Campaign ID.
curl "https://api.sequenzy.com/api/v1/campaigns/camp_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "campaign": {
    "id": "camp_abc123",
    "name": "April Launch",
    "subject": "A quick update",
    "preheader": "Latest product news",
    "status": "draft",
    "labels": ["edm", "launch"],
    "blocks": [],
    "campaignData": null,
    "computedLists": [],
    "replyProfileId": "reply_abc123",
    "replyToName": "Support",
    "replyToEmail": "support@example.com",
    "scheduledAt": null,
    "sentAt": null,
    "createdAt": "2026-05-01T10:30:00Z"
  }
}