Landing Pages
List Landing Pages
List landing pages for the current company
GET
/
api
/
v1
/
landing-pages
List Landing Pages
curl --request GET \
--url https://api.sequenzy.com/api/v1/landing-pages \
--header 'Authorization: Bearer <token>'{
"success": true,
"companyId": "comp_abc123",
"landingPages": [
{
"id": "lp_abc123",
"companyId": "comp_abc123",
"name": "Product Waitlist",
"slug": "product-waitlist",
"status": "published",
"content": { "version": 2, "template": "waitlist", "blocks": [] },
"viewCount": 1240,
"conversionCount": 186,
"publishedAt": "2026-05-01T10:30:00Z",
"createdAt": "2026-05-01T10:00:00Z",
"updatedAt": "2026-05-01T10:30:00Z",
"url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages/lp_abc123",
"appPublicUrl": "https://sequenzy.com/lp/comp_abc123/product-waitlist",
"publicUrl": "https://pages.example.com/product-waitlist"
}
],
"url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages"
}
List landing pages for the authenticated company.
Request
curl "https://api.sequenzy.com/api/v1/landing-pages" \
-H "Authorization: Bearer YOUR_API_KEY"
Responses
{
"success": true,
"companyId": "comp_abc123",
"landingPages": [
{
"id": "lp_abc123",
"companyId": "comp_abc123",
"name": "Product Waitlist",
"slug": "product-waitlist",
"status": "published",
"content": { "version": 2, "template": "waitlist", "blocks": [] },
"viewCount": 1240,
"conversionCount": 186,
"publishedAt": "2026-05-01T10:30:00Z",
"createdAt": "2026-05-01T10:00:00Z",
"updatedAt": "2026-05-01T10:30:00Z",
"url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages/lp_abc123",
"appPublicUrl": "https://sequenzy.com/lp/comp_abc123/product-waitlist",
"publicUrl": "https://pages.example.com/product-waitlist"
}
],
"url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages"
}
⌘I
List Landing Pages
curl --request GET \
--url https://api.sequenzy.com/api/v1/landing-pages \
--header 'Authorization: Bearer <token>'{
"success": true,
"companyId": "comp_abc123",
"landingPages": [
{
"id": "lp_abc123",
"companyId": "comp_abc123",
"name": "Product Waitlist",
"slug": "product-waitlist",
"status": "published",
"content": { "version": 2, "template": "waitlist", "blocks": [] },
"viewCount": 1240,
"conversionCount": 186,
"publishedAt": "2026-05-01T10:30:00Z",
"createdAt": "2026-05-01T10:00:00Z",
"updatedAt": "2026-05-01T10:30:00Z",
"url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages/lp_abc123",
"appPublicUrl": "https://sequenzy.com/lp/comp_abc123/product-waitlist",
"publicUrl": "https://pages.example.com/product-waitlist"
}
],
"url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages"
}