Quick Start Guide

Get your first form endpoint up and running in under 5 minutes. No backend required.

What you'll learn

  • • How to create your first form endpoint
  • • How to integrate with your HTML form
  • • How to view and manage submissions
1

Create Your Account

Sign up for a free Pipeero account to get started. No credit card required.

terminal
curl -X POST https://api.pipeero.com/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "your@email.com", "password": "secure123"}'

Or visit app.pipeero.com/register to sign up through the web interface.

2

Create Your First Form

Create a new form endpoint that will receive your form submissions.

javascript
const response = await fetch('https://api.pipeero.com/forms', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    name: 'Contact Form',
    fields: ['name', 'email', 'message']
  })
});

const form = await response.json();
console.log('Form endpoint:', form.endpoint);

Success!

Your form endpoint will be available at: https://api.pipeero.com/f/abc123