Transform your data into perfectly formatted Excel spreadsheets with our simple and powerful API.
Define your Excel sheets using a straightforward JSON structure. No complex configurations needed.
Create Excel files with multiple sheets, each with its own columns and data structure.
Generate and download Excel files with a single API call. Perfect for reports and data exports.
Learn how to structure your JSON data for Excel generation
The API accepts a JSON structure that defines the content of your Excel file. Each file can contain multiple sheets, and each sheet has its own columns and rows.
Property | Type | Description | Required |
---|---|---|---|
sheets | Array | Array of sheet objects | Yes |
Property | Type | Description | Required |
---|---|---|---|
name | String | Name of the sheet | Yes |
columns | Array[String] | Array of column headers | Yes |
rows | Array[Array] | Array of row data | Yes |
Here's a simple example of the JSON structure:
{
"sheets": [
{
"name": "Sheet1",
"columns": [
"Column1",
"Column2",
"Column3"
],
"rows": [
[
"Row1",
"Row2",
"Row3"
],
[
"Row4",
"Row5",
"Row6"
]
]
}
]
}
Choose the plan that best fits your needs