Embed the Body Type Quiz

Add InnerVeda's free Ayurvedic body type quiz to your website or blog. One iframe snippet — works anywhere.

Customise Your Embed

Add your partner name so we can track referrals back to you.

Backlink URL

Quiz completions link users to the full InnerVeda quiz with your UTM attribution:

https://www.innerveda.app/body-type-identification?utm_source=embed&utm_medium=quiz&utm_campaign=partner

Embed Code

<iframe
  src="https://www.innerveda.app/embed/body-type-quiz"
  width="100%"
  height="700"
  style="border:none;border-radius:12px;"
  title="InnerVeda Body Type Quiz"
  allow="clipboard-write"
></iframe>

Tip: Paste the code into any HTML page, WordPress block, Substack embed, or website builder that supports custom HTML. The quiz adapts to your page width automatically.

Live Preview

This is exactly how the quiz will look on your site.

How It Works

1

Paste the code

Add the iframe snippet to your website, blog post, or landing page.

2

Users take the quiz

Visitors complete the 8-question quiz right on your page — no redirects.

3

You earn attribution

Completions link back to InnerVeda with your partner ref for tracking and commission.

Advanced: Listen for Results

The embed sends quiz results to the parent frame via postMessage. Use this to personalise your page based on the user's body type.

window.addEventListener("message", (event) => {
  if (event.data?.type === "innerveda-quiz-result") {
    console.log("Body type:", event.data.bodyType);
    console.log("Ratio:", event.data.ratio);
    // { vata: 42, pitta: 33, kapha: 25 }
  }
});