curl --request GET \
--url https://app.ecomwize.io/api/v1/pages \
--header 'Authorization: Bearer ew_live_your_key_here'
{
"pages": [
{
"id": "e22f3857-cf0c-49c0-9e44-d76ea0bb7221",
"title": "Summer Sale Landing Page",
"slug": "summer-sale-landing",
"handle": "summer-sale-landing",
"status": "published",
"template_type": "page",
"section_count": 12,
"created_at": "2026-04-07T13:49:00.965Z",
"updated_at": "2026-04-08T18:07:59.695Z"
},
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Product Launch Landing",
"slug": "product-launch",
"handle": "product-launch",
"status": "draft",
"template_type": "page",
"section_count": 8,
"created_at": "2026-04-06T10:00:00.000Z",
"updated_at": "2026-04-06T10:00:00.000Z"
}
]
}
Retrieve a list of all your pages with their IDs, titles, and status.
curl --request GET \
--url https://app.ecomwize.io/api/v1/pages \
--header 'Authorization: Bearer ew_live_your_key_here'
{
"pages": [
{
"id": "e22f3857-cf0c-49c0-9e44-d76ea0bb7221",
"title": "Summer Sale Landing Page",
"slug": "summer-sale-landing",
"handle": "summer-sale-landing",
"status": "published",
"template_type": "page",
"section_count": 12,
"created_at": "2026-04-07T13:49:00.965Z",
"updated_at": "2026-04-08T18:07:59.695Z"
},
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Product Launch Landing",
"slug": "product-launch",
"handle": "product-launch",
"status": "draft",
"template_type": "page",
"section_count": 8,
"created_at": "2026-04-06T10:00:00.000Z",
"updated_at": "2026-04-06T10:00:00.000Z"
}
]
}
Bearer ew_live_your_key_hereHide Page object
draft or published.page or product.curl --request GET \
--url https://app.ecomwize.io/api/v1/pages \
--header 'Authorization: Bearer ew_live_your_key_here'
{
"pages": [
{
"id": "e22f3857-cf0c-49c0-9e44-d76ea0bb7221",
"title": "Summer Sale Landing Page",
"slug": "summer-sale-landing",
"handle": "summer-sale-landing",
"status": "published",
"template_type": "page",
"section_count": 12,
"created_at": "2026-04-07T13:49:00.965Z",
"updated_at": "2026-04-08T18:07:59.695Z"
},
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Product Launch Landing",
"slug": "product-launch",
"handle": "product-launch",
"status": "draft",
"template_type": "page",
"section_count": 8,
"created_at": "2026-04-06T10:00:00.000Z",
"updated_at": "2026-04-06T10:00:00.000Z"
}
]
}
Was this page helpful?