Convert ORC to Fixed Width using an API

Use our API to convert your Apache ORC data to Fixed Width/Fixed Length

Convert to
POST https://dataconverter.io/api/v1/convert/orc-to-fixed-width

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
    {
      "fields" : [ {
        "name" : "title",
        "width" : 12,
        "fillChar" : null,
        "skip" : false,
        "align" : "LEFT"
      }, {
        "name" : "name",
        "width" : 4,
        "fillChar" : null,
        "skip" : false,
        "align" : "LEFT"
      }, {
        "name" : "price",
        "width" : 5,
        "fillChar" : null,
        "skip" : false,
        "align" : "LEFT"
      } ]
    }
Request Sample

curl -X POST "https://dataconverter.io/api/v1/convert/orc-to-fixed-width" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-F "file=@data.orc;type=application/vnd.apache.orc" \
-F "downloadSettings={\"fields\":[{\"name\":\"title\",\"width\":12,\"fillChar\":null,\"skip\":false,\"align\":\"LEFT\"},{\"name\":\"name\",\"width\":4,\"fillChar\":null,\"skip\":false,\"align\":\"LEFT\"},{\"name\":\"price\",\"width\":5,\"fillChar\":null,\"skip\":false,\"align\":\"LEFT\"}]};type=application/json" \
--output converted.txt
          
Show All APIs