Technical Documentation

Mastering the Neural Form Interface

01. Initialize Your Node

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.

02. Neural Integration (Integration Guide)

Copy the Endpoint URL from your dashboard and insert it into your HTML form's action attribute. Ensure the method is set to POST.

HTML Implementation Example
<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>
  • Smart Keys: The name attributes of your inputs will automatically become keys in your submissions dashboard.
  • Security: All transmissions are handled over high-security encrypted protocols.

03. Analyze Data Streams

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.