Transform your Google Sheets into a powerful backend with just a few clicks.
Share your Google Sheet with our service account email
google-sheets-backend@personal-310102.iam.gserviceaccount.com
Start making REST API calls to your Google Sheet data.
curl -X GET "https://google-sheets-backend.canine.sh/sheet/{your-sheet-id}/{your-sheet-name}"
{
"data": [
{"id": 1, "name": "John", "age": "30"},
{"id": 2, "name": "Jane", "age": "25"}
]
}
curl -X POST "https://google-sheets-backend.canine.sh/sheet/{your-sheet-id}/{your-sheet-name}" \
-H "Content-Type: application/json" \
-d '{"name": "Bob", "age": "35"}'
{
"id": 3,
"name": "Bob",
"age": "35"
}
curl -X PUT "https://google-sheets-backend.canine.sh/sheet/{your-sheet-id}/{your-sheet-name}/1" \
-H "Content-Type: application/json" \
-d '{"name": "Johnny", "age": "31"}'
{
"id": 1,
"name": "Johnny",
"age": "31"
}
curl -X DELETE "https://google-sheets-backend.canine.sh/sheet/{your-sheet-id}/{your-sheet-name}/1"
{
"id": 1,
"name": "Johnny",
"age": "31"
}