---
title: "Web Form to AirTable"
description: "Learn how to proxy Airtable's API and connect it to a form via Zuplo."
canonicalUrl: "https://zuplo.com/blog/2022/03/25/web-form-to-airtable"
pageType: "blog"
date: "2022-03-25"
authors: "josh"
tags: "Tutorial"
image: "https://zuplo.com/og?text=Web%20Form%20to%20AirTable"
---
In this post we pickup where left off in this post
[Gateway over SaaS?](/blog/an-api-gateway-over-saas) and take our AirTable API
and make it work directly with a form POST from a website.

<YouTubeVideo videoId="USFEI0nbEF4" />

Length: 2 minutes

It even has a honeypot field to filter out simple bots 👏

Here's the form post code from JSFiddle

```html
<form method="POST" action="<YOUR ZUPLO API URL HERE>">
  <input type="text" name="name" value="" />
  <input type="text" name="email" value="" />
  <input type="text" style="display:hidden" name="hp" value="" />
  <button>submit</button>
</form>
```