Custom Code, iFrame & Form API Integration
Developers & Marketers • iFrame / REST API / React / Next.js / HTML / Ads
Our system automatically generates Form APIs, direct campaign URLs, and ready-to-use iFrame code snippets so you never have to build forms from scratch unless you want to.
🖼️ Method 1: Embedded iFrame (No Coding Required)
Embed pre-built styled forms directly into any website using an iFrame. Save time and avoid writing form logic from scratch:
<!-- Form iFrame Embed Snippet -->
<iframe
src="https://email-marketing-liart.vercel.app/api//embed/YOUR_FORM_ID"
width="100%"
height="650"
frameborder="0"
style="border:none; border-radius: 12px; max-width: 800px; width: 100%; overflow: hidden;"
allow="autoplay; encrypted-media">
</iframe>⚡ Method 2: Generated Form API (Headless UI & Vibe Conditions)
Build your own React, Next.js, or HTML frontend with complete styling freedom and submit directly to our system's generated Form API endpoint:
Option A: Direct <form action="..." method="POST"> Tag
Paste your Form API URL directly into the action attribute of any standard HTML <form> tag:
Option B: JavaScript / React Fetch API Submission
// Submit Form Data to Generated API Endpoint URL
const response = await fetch("https://email-marketing-liart.vercel.app/api//api/v1/submit/YOUR_FORM_ID", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
answers: {
name: "Jane Doe",
email: "jane@example.com"
},
campaign_source: "google_ads"
})
});
const data = await response.json();
// Handles dynamic vibe condition response or redirect URL
if (data.redirectUrl) {
window.location.href = data.redirectUrl;
}🚀 Method 3: Direct Standalone Campaign URL (For Ads & Campaigns)
No website? No problem. Use the hosted standalone form URL directly in Facebook Ads, Google Ads, TikTok Ads, or email outreach:
Hosted Campaign URL format:
https://yourformapp.com/form/YOUR_FORM_ID?utm_source=facebook_adsUTM parameters passed in the URL are automatically captured alongside user form responses!