Forms integration with Airtable for data collection

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    823
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    848
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Integrating forms with Airtable for data collection

Airtable is a tabular database with a convenient interface. When integrating forms with Airtable, each submission creates a new record in the base — with field typing, filters, views, and automation opportunities via built-in Airtable Automations.

Airtable REST API

class AirtableService
{
    public function createRecord(string $baseId, string $tableId, array $fields): array
    {
        $resp = Http::withToken(config('services.airtable.api_key'))
            ->post("https://api.airtable.com/v0/{$baseId}/{$tableId}", [
                'fields' => $fields,
            ]);

        return $resp->json();
    }
}

// Using when submitting form
class ContactFormController extends Controller
{
    public function submit(Request $request): JsonResponse
    {
        $data = $request->validate([
            'name'    => 'required|string|max:100',
            'email'   => 'required|email',
            'phone'   => 'nullable|string',
            'message' => 'required|string|max:2000',
        ]);

        app(AirtableService::class)->createRecord(
            config('services.airtable.base_id'),
            config('services.airtable.table_id'),
            [
                'Name'       => $data['name'],
                'Email'      => $data['email'],
                'Phone'      => $data['phone'] ?? '',
                'Message'    => $data['message'],
                'Date'       => now()->toDateTimeString(),
                'Source'     => $request->header('referer'),
                'Status'     => 'New',
            ]
        );

        return response()->json(['success' => true]);
    }
}

Airtable Automations

After creating a record, Airtable can automatically:

  • Send email notification via built-in Gmail/Outlook
  • Create a task in Asana/Monday
  • Send Slack message
  • Run webhook to third-party system

This allows implementing part of business logic directly in Airtable without additional code.

Implementation time: 1 working day.