Making Requests
Get your API key
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
URL Params
SpreadSheet ID is an identifier of a Sheet in a Google Spreadsheet file.
Sheet Name is the title of the sheet you wish to make calls to.

Row ID is the ID assigned to each row by Milkysheet, notice when a GET call is made each row will have a unique ID.
Google Sheet Format
Groundhog Day
Comedy
Die Hard
Action
Header Request
Your API Key is generated from the MilkySheet dashboard, if you feel like the key may have been compromised you can generate a new one. You can also access your Unique Id from the dashboard.
Example Header
Get Rows
GET https://api.milkysheet.com/{SheetID}/{SheetName}
Example Response
Get Specific Row
GET https://api.milkysheet.com/{SheetID}/{SheetName}/{RowID}
Response
Filter Rows
GET https://api.milkysheet.com/{SheetID}/{SheetName}?column=<Columnd Header>&value=<Value to Search for>
Add Rows
POST https://api.milkysheet.com/{SheetID}/{SheetName}
Example Body
Edit Rows
PUT https://api.milkysheet.com/{SheetID}/{SheetName}/{RowID}
Example Body
Delete Rows
DELETE https://api.milkysheet.com/{SheetID}/{SheetName}/{RowID}
Last updated