Data Converters
Data rarely stays in one format for its whole life. This category converts between the formats developers move data through most often — JSON, CSV, YAML, and XML — so a dataset from one system can be reshaped for another without writing a one-off script.
Common use cases
- Turning a CSV export into JSON for use in application code
- Converting a JSON API response into CSV for a spreadsheet
- Moving configuration between JSON and YAML representations
- Converting legacy XML data into JSON for a modern API
Tools
JSON to CSV
Convert a JSON array of objects into CSV.
CSV to JSON
Convert CSV into JSON objects or arrays.
JSON to YAML
Convert JSON to YAML, preserving types.
YAML to JSON
Convert YAML to JSON, preserving types.
JSON to XML
Convert JSON to XML with a documented, predictable mapping.
XML to JSON
Convert XML to JSON with real well-formedness checking.
Advertisement