Automation
Let scripts, cron jobs, or workflow tools read and write sheet data over HTTP instead of scraping or manual exports.
BlazeSheets
Connect a Google Sheet or Excel workbook, configure a REST API, and call it from your app without building a backend.
Keep editing in Sheets or Excel. BlazeSheets exposes the workbook as a REST API your app can call.
Link a Google account and pick a spreadsheet, or upload an Excel file on a plan that includes Excel.
Choose permissions (read, create, update, delete, calculate) and whether callers need an API key.
Use your API ID at /v1/:apiId. Select a tab with $sheet. Responses are JSON with computed values for formula cells.
The controls you set in the console map directly to how clients call your spreadsheet API.
Keep the data and formulas in a spreadsheet. Use the API from the apps and workflows you already have.
Let scripts, cron jobs, or workflow tools read and write sheet data over HTTP instead of scraping or manual exports.
Accept submissions from a web form into a Google Sheet or Excel workbook with create permissions and an API key.
Keep pricing, quotes, or scoring models in the spreadsheet. Call calculate with inputs and return the computed result as JSON.
Power admin panels and ops dashboards from the same workbook your team already edits—filter, sort, and paginate as needed.
Serve product lists, menus, or content inventories as a REST API without standing up a separate CMS database.
Ship an MVP against a spreadsheet backend, then keep the API stable if you later move the data elsewhere.
Column names come from the first row of the sheet. Filter, paginate, and select a tab with query parameters. Formula cells return computed values in the response.
Request
curl -G 'https://api.blazesheets.com/v1/<api-id>' \ --data-urlencode '$sheet=Sheet1' \ --data-urlencode 'filter=status:eq:active' \ --data-urlencode 'limit=50' \ -H 'X-API-Key: bs_…'
Response
{
"data": [
{
"name": "Ada",
"email": "ada@example.com",
"status": "active"
}
],
"meta": {
"limit": 50,
"offset": 0,
"format": "rows"
}
}Pricing
Free covers Google Sheets. Upgrade for Excel, more APIs, and higher monthly request limits.
Already have an account? Manage billing
Connect a workbook, set permissions, and call a JSON endpoint from your application.