Transform your Google Sheets into a powerful REST API backend with just a few clicks.
- Turn any Google Sheet into a REST API endpoint
- Simple setup process
- JSON response format
- Free to use
- Share your Google Sheet with the service account email provided on the homepage
- Make API calls to your sheet data:
curl -X GET "https://google-sheets-backend.canine.sh/sheet/{your-sheet-id}/{your-sheet-name}"
{
"data": [
{
"column1": "value1",
"column2": "value2"
}
]
}
- Clone the repository
- Install dependencies:
pip install -r requirements.txt
- Set up environment variables:
[email protected]
CREDENTIALS_JSON_BASE64=your-base64-encoded-credentials
- Run the server:
fastapi dev main.py
MIT License