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.
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" } ] }'