Complete reference of available HTTP methods to interact with your spreadsheet. Replace [sheetId] with your project ID.
/api/sheets/[sheetId]Returns all records from the spreadsheet in JSON array format.
limit (optional): Limits the number of results.offset (optional): Pagination./api/sheets/[sheetId]?id=123Returns a single record where the id column matches the value.
/api/sheets/[sheetId]Adds a new row to the spreadsheet. The request body must be a JSON object with keys corresponding to the columns.
{
"name": "New Customer",
"email": "customer@example.com"
}/api/sheets/[sheetId]?id=123Updates an existing row based on the ID.
/api/sheets/[sheetId]?id=123Removes the corresponding row from the spreadsheet.