Launch your first form

Follow these three steps to start collecting submissions in under 2 minutes.

Obtain your API Key

Create a "Service" in your Falcosend dashboard to generate a key.

Go to Dashboard

Install the SDK

Add the lightweight Falcosend client to your project.

pnpm add falcosend-sdk

Initialize & 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' }
});