Convert Avro to Excel97 using an API
Use our API to convert your Apache Avro data to Excel 97-2003 (.xls)
Convert
to
POST
https://dataconverter.io/api/v1/convert/avro-to-xls
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>
-
downloadSettings
object
{ "sheetName" : "Sheet1", "firstRowIndex" : 0, "firstColumnIndex" : 0, "autofitColumns" : false, "autoFilterColumns" : false, "fieldNamesInFirstRow" : true }
Request Sample
curl -X POST "https://dataconverter.io/api/v1/convert/avro-to-xls" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-F "file=@data.avro;type=application/avro" \
-F "downloadSettings={\"sheetName\":\"Sheet1\",\"firstRowIndex\":0,\"firstColumnIndex\":0,\"autofitColumns\":false,\"autoFilterColumns\":false,\"fieldNamesInFirstRow\":true};type=application/json" \
--output converted.xls