Convert Avro to JSON Lines using an API

Use our API to convert your Apache Avro data to JSON Lines / NDJSON

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

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>
Request Sample

curl -X POST "https://dataconverter.io/api/v1/convert/avro-to-json-lines" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-F "file=@data.avro;type=application/avro" \
--output converted.jsonl
          
Show All APIs