Calculate spreadsheet outputs
Temporarily applies input values to A1 cell references and returns a flat alias-to-value map for requested output cells. Use $sheet to select a worksheet tab (defaults to the first sheet). Requires calculate; protected APIs accept X-API-Key or bearer auth. Supply cf-turnstile-response or captchaToken when calculate CAPTCHA is enabled. Example request: { "inputs": { "B2": 1000000 }, "outputs": { "B8": "emi" } }; response: { "emi": 8678.03 }.
BlazeSheets API key used to access a protected public API.
In: header
Path Parameters
uuidQuery Parameters
Worksheet tab name (case-sensitive). Defaults to the first sheet when omitted.
1 <= lengthHeader Parameters
Required when CAPTCHA is enabled for this operation.
Request Body
application/json
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/497f6eca-6276-4993-bfeb-53cbbbba6f08/calculate" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "property1": "string", "property2": "string" }, "outputs": { "property1": "string", "property2": "string" } }'{ "property1": "string", "property2": "string"}API Reference
Public spreadsheet JSON API — read, write, and calculate.
Create a row POST
Appends a row when the API grants `create`. Use `$sheet` to select a worksheet tab (defaults to the first sheet). API-key APIs accept `X-API-Key` or `Authorization: Bearer`. When create CAPTCHA is enabled, send a Turnstile token in `cf-turnstile-response` or `captchaToken`. Domain, CORS, and rate-limit policies are enforced.