Skip to main content
GET
/
v1
/
pages
/
{page_id}
curl --request GET \
  --url https://app.ecomwize.io/api/v1/pages/e22f3857-cf0c-49c0-9e44-d76ea0bb7221 \
  --header 'Authorization: Bearer ew_live_your_key_here'
{
  "page": {
    "id": "e22f3857-cf0c-49c0-9e44-d76ea0bb7221",
    "title": "Summer Sale Landing Page",
    "slug": "summer-sale-landing",
    "handle": "summer-sale-landing",
    "status": "published",
    "template_type": "page",
    "sections": {
      "section_1": {
        "type": "hero01",
        "content": {
          "hero01_heading": "Summer sale is here",
          "hero01_subheading": "Get 50% off everything...",
          "hero01_btn": "Shop Now",
          "hero01_trust": "Rated 4.9/5 by 12,000+ customers",
          "imageUrl": "https://cdn.ecomwize.io/...",
          "buttonLink": "/collections/all"
        }
      },
      "section_2": {
        "type": "benefit01",
        "content": {
          "benefit01_heading": "Why Choose Us",
          "benefit01_bullet_1": "Free shipping worldwide",
          "benefit01_bullet_2": "30-day money back guarantee",
          "benefit01_btn": "Learn More",
          "imageUrl": "https://cdn.ecomwize.io/..."
        }
      },
      "section_3": {
        "type": "testimonial11",
        "content": {
          "testimonial11_heading": "What customers say",
          "testimonial11_btn": "Try It Now",
          "cards": [
            {
              "testimonial11_card_1_quote": "Amazing quality...",
              "testimonial11_card_1_author": "Sarah M.",
              "avatarUrl": "https://cdn.ecomwize.io/..."
            }
          ]
        }
      }
    },
    "created_at": "2026-04-07T13:49:00.965Z",
    "updated_at": "2026-04-08T18:07:59.695Z"
  }
}
Returns a page with all its sections and their content fields. Only text, media URLs, and button links are returned — no style or layout fields. Use this endpoint to discover the exact field names before calling the fill endpoint.
page_id
string
required
The unique ID of the page. Get it from the list pages endpoint.
Authorization
string
required
Bearer token. Example: Bearer ew_live_your_key_here

Response

page
object
required

Content field naming

Content fields follow a consistent naming pattern:
PatternExampleDescription
{type}_headinghero01_headingMain heading text
{type}_subheadinghero01_subheadingSubheading text
{type}_btnhero01_btnButton text
{type}_bullet_Nbenefit01_bullet_1Bullet point
{type}_faq_N_questionfaq01_faq_1_questionFAQ question
{type}_faq_N_answerfaq01_faq_1_answerFAQ answer
imageUrlImage or video URL
buttonLinkButton destination

Nested content

Some sections contain nested content in arrays:
KeySectionsContains
cardsTestimonials, UGC, IngredientsQuotes, authors, images per card
snippetsProduct, AdvertorialBullet lists, FAQs, tags, notice boxes
bulletsBenefit sectionsBullet titles and descriptions
sidebarAdvertorialSidebar tag, title, bullets, button text
itemsBannerImage URLs per item
Fields like colors, font sizes, alignment, toggles, and icons are never returned. Your design stays exactly as you built it in the editor.
curl --request GET \
  --url https://app.ecomwize.io/api/v1/pages/e22f3857-cf0c-49c0-9e44-d76ea0bb7221 \
  --header 'Authorization: Bearer ew_live_your_key_here'
{
  "page": {
    "id": "e22f3857-cf0c-49c0-9e44-d76ea0bb7221",
    "title": "Summer Sale Landing Page",
    "slug": "summer-sale-landing",
    "handle": "summer-sale-landing",
    "status": "published",
    "template_type": "page",
    "sections": {
      "section_1": {
        "type": "hero01",
        "content": {
          "hero01_heading": "Summer sale is here",
          "hero01_subheading": "Get 50% off everything...",
          "hero01_btn": "Shop Now",
          "hero01_trust": "Rated 4.9/5 by 12,000+ customers",
          "imageUrl": "https://cdn.ecomwize.io/...",
          "buttonLink": "/collections/all"
        }
      },
      "section_2": {
        "type": "benefit01",
        "content": {
          "benefit01_heading": "Why Choose Us",
          "benefit01_bullet_1": "Free shipping worldwide",
          "benefit01_bullet_2": "30-day money back guarantee",
          "benefit01_btn": "Learn More",
          "imageUrl": "https://cdn.ecomwize.io/..."
        }
      },
      "section_3": {
        "type": "testimonial11",
        "content": {
          "testimonial11_heading": "What customers say",
          "testimonial11_btn": "Try It Now",
          "cards": [
            {
              "testimonial11_card_1_quote": "Amazing quality...",
              "testimonial11_card_1_author": "Sarah M.",
              "avatarUrl": "https://cdn.ecomwize.io/..."
            }
          ]
        }
      }
    },
    "created_at": "2026-04-07T13:49:00.965Z",
    "updated_at": "2026-04-08T18:07:59.695Z"
  }
}