Documentation

v1.0.0

Introduction

Sheet2SaaS transforms your static spreadsheets into dynamic, API-ready applications. Upload a CSV, and instantly get a database, a REST API, and a collaborative dashboard.

For Developers

Skip the backend boilerplate. Get a fully typed JSON API for your data in seconds.

For Business

Turn internal sheets into public forms, client portals, or internal tools without coding.

Getting Started

1

Create a Dataset

Upload a CSV file or start with a blank sheet. Our AI automatically detects column types (Text, Number, Date, Email, etc.).

2

Enrich & Clean

Use the "AI Enrich" feature to identify missing data or generate insights. Edit data directly in the grid view.

3

Connect & Share

Generate an API key to use your data in other apps, or publish a public view to share with the world.

API Reference

Every dataset you create has a unique ID and a corresponding API endpoint.

Authentication

Include your API key in the Authorization header of every request.

Authorization: Bearer sk_your_api_key_here

Endpoints

GET
/api/v1/datasets/:id

Retrieve all records from a dataset.

Response Example

{
  "data": [
    {
      "id": 1,
      "name": "John Doe",
      "email": "john@example.com",
      "status": "Active"
    },
    ...
  ],
  "meta": {
    "total": 150,
    "page": 1
  }
}

Public Views & Forms

Public Views

Read-only access for everyone

Toggle "Public Access" to create a shareable link. Visitors can view, search, and filter your data without logging in.

  • Client Portals
  • Public Directories
  • Transparency Reports

Public Forms

Collect data from anyone

Enable "Public Form" to generate a submission page. New entries are automatically appended to your dataset.

  • Surveys & Feedback
  • Waitlists
  • Job Applications

Team Management

Collaborate with your team by inviting them to your workspace.

Roles & Permissions

Owner

Full access to billing, team management, and all datasets.

Member

Can view and edit datasets. Cannot manage billing or delete the workspace.

Viewer

Read-only access to datasets. (Coming Soon)

Security & Privacy

Data Protection

Your data is encrypted at rest and in transit. We use Row Level Security (RLS) to ensure that only authorized users can access your datasets.

  • AES-256 Encryption
  • TLS 1.3 for all connections
  • Regular security audits

GDPR Compliance

You retain full ownership of your data. You can export or delete your datasets at any time from the Settings page.