To pre-fill an Airtable form embedded in a Webflow page, you can use URL parameters appended to the form URL. Airtable automatically populates fields if the field names match parameter keys.
https://airtable.com/embed/shrAbCdEfG12345
First Name
, the parameter is ?prefill_First%20Name=
AirtableFormURL?prefill_Field1=value1&prefill_Field2=value2
https://airtable.com/embed/shrAbCdEfG12345?prefill_First%20Name=John&prefill_Email=john@example.com
src
to your Airtable form URL with the prefill parameters.https://airtable.com/embed/shrAbCdEfG12345?prefill_First%20Name=John&prefill_Email=john@example.com
https://airtable.com/embed/shrAbCdEfG12345?prefill_Email={{email}}
{{email}}
with the actual CMS field in Webflow (via the +Add Field panel).To prefill an Airtable form in Webflow, append ?prefill_FieldName=value
to the Airtable embed URL and either set it statically or dynamically with Webflow CMS data. Use the exact field names from Airtable and ensure proper URL encoding for spaces and special characters.