Connect Everything

Powerful integrations with your favorite tools

Connect FlowForm with 100+ apps and services to streamline your workflows and automate data sharing.

Popular Integrations

Z
G
S
S
M
H
FF
FlowForm
Z
Zapier
1
2
3
Your Apps

Connect with your favorite apps

FlowForm integrates with 100+ popular tools to streamline your workflows and keep your data in sync

S
Salesforce
H
HubSpot
M
Mailchimp
A
ActiveCampaign
M
Marketo
Z
Zoho CRM
Developer API

Build custom integrations with our API

Our developer-friendly API allows you to create custom integrations and embed FlowForm functionality directly into your applications.

API Request Example
const response = await fetch('https://api.flowform.com/v1/forms', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
title: 'Customer Feedback Form',
description: 'Help us improve our services',
questions: [
{ type: 'text', label: 'Your Name' },
{ type: 'email', label: 'Email Address' },
{ type: 'rating', label: 'Rate our service' }
]
})
});
const data = await response.json();