Skip to main content

Convert JSON to Excel

ConvertConvert JSON to Excel

The Convert JSON to Excel API turns JSON into an Excel spreadsheet. You send the JSON as Base64 (docContent), docName, worksheetName, isTitleWrapText, isTitleBold, convertNumberAndDate, numberFormat, dateFormat, ignoreNullValues, firstRow, firstColumn, and IsAsync. The API returns the Excel file (or 202 + Location for async). Use the tester below to try it; more details are in the sections that follow.

Try the Convert JSON to Excel API

Quick reference

Endpoint: POST /api/v2/ConvertJsonToExcel · Required: api-key, docContent, docName, worksheetName, isTitleWrapText, isTitleBold, convertNumberAndDate, numberFormat, dateFormat, ignoreNullValues, firstRow, firstColumn, IsAsync

Try it live

Use the form below to send your API key and JSON (Base64). Set worksheet name, formatting, number/date options, and start row/column; the response is the Excel file (or polling URL when async). No code required—fill the fields and click Send request.

Loading API Tester...

Overview, parameters, and use cases

What is Convert JSON to Excel?

This endpoint converts JSON data into an Excel spreadsheet. You provide the JSON (Base64), docName, worksheetName, isTitleWrapText, isTitleBold, convertNumberAndDate, numberFormat, dateFormat, ignoreNullValues, firstRow, firstColumn, and IsAsync. The API returns the Excel file or a Location URL for async.

Key features

  • WorksheetworksheetName, firstRow, firstColumn for placement.
  • FormattingisTitleWrapText, isTitleBold; numberFormat, dateFormat; ignoreNullValues.
  • AsyncIsAsync returns 202 with Location URL for polling.
Best for

Use when you need Excel from JSON (API data, exports). For PDF tables use Convert PDF to Excel.

Prerequisites

Before using this endpoint, make sure you have:

Response Format

The API returns an Excel file:

  • Status 200: JSON to Excel conversion completed immediately - binary Excel file content in response body
  • Status 202: Request accepted and processing asynchronously - use the Location header URL to poll for results

For asynchronous requests, poll the Location URL until status 200 is returned with the Excel file.

Get Help