Documentation
Learn how to integrate Info2Sheets with your HTML forms and send submissions directly to Google Sheets.
Unlock Your API Keys & Endpoints
Sign up for an account to get your personal API keys and form endpoints.
Sign Up to Get StartedGoogle Sheets Setup
Before you can write data, you need to share your spreadsheet with our service account.
- Open your Google Sheet
- Click the "Share" button in the top right
- Add the service account email:
[OUR_SERVICE_ACCOUNT_EMAIL] - Give it "Editor" permissions
- Click "Send"
Integration Example
Here’s a basic example of how to connect your form. You'll get your unique Form ID from the dashboard after signing up.
<form action="OUR_INFO2SHEETS_ENDPOINT/[YOUR_FORM_ID]" method="POST">
<input type="text" name="name" required>
<input type="email" name="email" required>
<button type="submit">Submit</button>
</form>API Reference Preview
We offer secure endpoints for both client-side and server-side submissions.
POST /api/submission/:formId (For Browsers)
Use this endpoint for forms submitted from your website. It's safe to use publicly.
POST /v1?key=API_KEY (For Servers)
Use this endpoint for server-to-server integrations where your API key can be kept secret.
Full API documentation, including authentication and form management endpoints, is available after signing up.