Get your first form up and running in under 5 minutes
Sign up for FormWise using Google or GitHub. No credit card required for the free tier.
Create Free Account →Free Tier includes: 30 submissions/month, 5-day retention, 2 API keys
⚠️ Important:Store your API key securely. It's only shown once and cannot be retrieved later.
Add our JavaScript SDK to your page and mark your form with the data-formwise attribute:
<!DOCTYPE html>
<html>
<head>
<title>Contact Form</title>
<script src="https://formwise.dev/sdk.min.js"></script>
</head>
<body>
<form data-formwise>
<input type="text" name="name" placeholder="Name" required />
<input type="email" name="email" placeholder="Email" required />
<textarea name="message" placeholder="Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<script>
FormWise.init('YOUR_API_KEY_HERE');
</script>
</body>
</html>✓ That's it! Your form is now connected to FormWise. Try submitting it!
Label your API keys:Use descriptive names like "Production Site" or "Blog Contact Form" to easily identify them
Add custom fields:You can add any input fields you want - they'll be captured automatically
Test spam detection: Try submitting with obvious spam words to see the spam filter in action