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=partnerEmbed 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
Paste the code
Add the iframe snippet to your website, blog post, or landing page.
Users take the quiz
Visitors complete the 8-question quiz right on your page — no redirects.
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 }
}
});