🍑

How Peach Form Works

Create form → Copy endpoint → Send POST request → View submissions → Upgrade when needed

1. Create a Form

Form Name: Contact Form
Description: Website contact form

Create a form endpoint in seconds.

2. Copy Your Endpoint

https://api.peachform.com/f/ckz123abc

Every form gets a unique endpoint.

3. Send a POST Request

curl -X POST https://api.peachform.com/f/ckz123abc \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jane Doe",
    "email": "[email protected]",
    "message": "Hello!"
  }'

Send JSON from your frontend, Postman, or any backend.

4. View Submissions

Name        Email              Message
Jane Doe    [email protected]   Hello!

Submissions appear instantly in your dashboard.

Click any submission to open a detail view with flattened fields and pretty raw JSON.

email: [email protected]
message: Hello!
meta.source: landing-page