Convert Parquet to JSON using an API

Use our API to convert your Apache Parquet data to JSON

Convert to
POST https://dataconverter.io/api/v1/convert/parquet-to-json

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
    {
      "rootFieldName" : "data",
      "pretty" : true,
      "charset" : "UTF-8"
    }
Request Sample

curl -X POST "https://dataconverter.io/api/v1/convert/parquet-to-json" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-F "file=@data.parquet;type=application/vnd.apache.parquet" \
-F "downloadSettings={\"rootFieldName\":\"data\",\"pretty\":true,\"charset\":\"UTF-8\"};type=application/json" \
--output converted.json
          
Show All APIs