Launch your first form
Follow these three steps to start collecting submissions in under 2 minutes.
Install the SDK
Add the lightweight Falcosend client to your project.
pnpm add falcosend-sdkInitialize & Submit
Import the SDK and call .submit().
import { FalcoSend } from 'falcosend-sdk';
const sdk = new FalcoSend({
submissionKey: 'fs_live_xxxxxxxxxxxx'
});
await sdk.submit({
form_name: 'Contact Form',
data: { email: 'user@example.com' }
});