Convert JSON to Excel — in one API call.

Build exports in seconds, not hours. The Exports API turns your JSON data into clean, well-formatted Excel files — perfect for reports, dashboards, or client deliverables.

Get your free API Key
* No credit card required *

Try it in one request!

curl -X POST https://api.exportsapi.softfusion.dev/v1/excel/generate \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
        "columns": [
            { "header": "Name", "key": "name" },
            { "header": "Email", "key": "email" }
        ],
        "data": [
            { "name": "Jane Doe", "email": "jane@example.com" },
            { "name": "John Smith", "email": "john@example.com" }
        ]
    }'
                        

As easy as 1, 2, 3

  1. Login to the exports API portal
  2. Create a new project which will generate an API key for you
  3. Use this API key and make a request to the export endpoint
Checkout this tutorial