BlazeSheets

Sheet Selection

Choose a worksheet tab with the $sheet query parameter.

Use the $sheet query parameter to target a specific worksheet tab. The name is case-sensitive. When omitted, BlazeSheets uses the first sheet in the workbook.

curl -X GET 'https://api.blazesheets.com/v1/<api-id>?$sheet=Customers'

Works on all public operations:

OperationExample
ReadGET /v1/:apiId?$sheet=Sheet1
CreatePOST /v1/:apiId?$sheet=Orders
UpdatePUT /v1/:apiId/1?$sheet=Orders
DeleteDELETE /v1/:apiId/1?$sheet=Orders
CalculatePOST /v1/:apiId/calculate?$sheet=Model

If the named sheet does not exist, the API returns an error.