Convert Excel Binary to PDF using an API

Use our API to convert your Excel Binary Workbook data to PDF

Convert to
POST https://dataconverter.io/api/v1/convert/xlsb-to-pdf

After signing up and verifying your email, you will be able to create an API Token in your account settings.

Headers
  • Authorization (required) Bearer <<YOUR_API_TOKEN_HERE>>
Request Body — (multipart/form-data)
  • file (required) string <binary>
  • uploadSettings

    object
    {
      "sheetName" : "Sheet1",
      "startingRow" : 0,
      "lastRow" : 100,
      "startingColumn" : 0,
      "skipEmptyRows" : true,
      "fieldNamesInFirstRow" : true,
      "evaluateExpressions" : true,
      "useSheetColumnCount" : false
    }
  • downloadSettings

    object
    {
      "pageSize" : "A3",
      "pageOrientation" : "LANDSCAPE",
      "columnStyles" : [ {
        "index" : 0,
        "wordwrap" : true
      }, {
        "index" : 1,
        "wordwrap" : true
      }, {
        "index" : 2,
        "wordwrap" : true
      } ]
    }
Request Sample

curl -X POST "https://dataconverter.io/api/v1/convert/xlsb-to-pdf" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-F "file=@data.xlsb;type=application/application/vnd.ms-excel.sheet.binary.macroEnabled.12" \
-F "uploadSettings={\"sheetName\":\"Sheet1\",\"startingRow\":0,\"lastRow\":100,\"startingColumn\":0,\"skipEmptyRows\":true,\"fieldNamesInFirstRow\":true,\"evaluateExpressions\":true,\"useSheetColumnCount\":false};type=application/json" \
-F "downloadSettings={\"pageSize\":\"A3\",\"pageOrientation\":\"LANDSCAPE\",\"columnStyles\":[{\"index\":0,\"wordwrap\":true},{\"index\":1,\"wordwrap\":true},{\"index\":2,\"wordwrap\":true}]};type=application/json" \
--output converted.pdf
          
Show All APIs