Mastering the Neural Form Interface
To begin collecting data, navigate to your Dashboard and create a new Node. Each node represents a unique form endpoint with its own dedicated data stream.
Copy the Endpoint URL from your dashboard and insert it
into your HTML form's action attribute. Ensure the method is set to
POST.
<form action="https://lime-dinosaur-350256.hostingersite.com/f/YOUR_NODE_KEY" method="POST"> <input type="text" name="client_name" placeholder="Full Name" required> <input type="email" name="client_email" placeholder="Email Address" required> <textarea name="client_message" ></textarea> <button type="submit">Transmit Data</button> </form>
name
attributes of your inputs will automatically become keys in your submissions dashboard.Once a client submits your form, the data packet is instantly routed to your dashboard. You can view, manage, and export all incoming payloads chronologically in the Incoming Data Stream section.