Sheet0 - Spreadsheet API
Turn your Google Sheets into a simple REST API. Publish your sheet as CSV and use it as a database for prototyping.
📊 Fetch Data
Get this from Google Sheets: File → Share → Publish to web → CSV
âž• Add Data
Deploy a Google Apps Script that appends to your sheet
Form Data
📚 API Usage
Endpoints
GET /api/sheet/fetch
Query Parameters:
- • csv: Published CSV URL (required)
- • q: Filter like "Status=Open" (optional, repeatable)
- • select: Comma-separated columns to include (optional)
POST /api/sheet/append
Body:
{
"webhook": "https://script.google.com/.../exec",
"row": {
"Name": "John",
"Email": "[email protected]"
}
}