Create a row
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.
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" \ -H "Content-Type: application/json" \ -d '{ "property1": "string", "property2": "string" }'{ "created": 0, "rowNumber": 0, "data": { "property1": "string", "property2": "string" }}Calculate spreadsheet outputs POST
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 }`.
Delete a row DELETE
Deletes the record at the 1-based data row number (excluding header) when `delete` is granted. Use `$sheet` to select a worksheet tab (defaults to the first sheet). Authenticate through `X-API-Key` or bearer auth when configured. If delete CAPTCHA is enabled, send `cf-turnstile-response` or `captchaToken` as a query parameter.