Convert to JSON
JSON is the de facto data interchange standard for web APIs and applications. This group parses YAML, XML and TOML config files plus CSV and XLSX spreadsheets into structured data, then serializes to JSON โ 5 conversion directions.
XML attributes are preserved with an @_ prefix; CSV numeric values restore native types (leading-zero identifiers stay text); spreadsheets use their first worksheet. A minify option removes indentation to reduce size.
YAMLโJSON
Parses YAML to JSON, resolving anchors and multi-line strings, handing configuration to APIs and programs that only accept JSON.
XMLโJSON
Parses XML to JSON with attributes under the @_ prefix and text nodes preserved, feeding SOAP/RSS responses into modern frontends.
TOMLโJSON
Parses TOML to JSON preserving dates and arrays, handing Rust/Python project config to JavaScript tooling.
CSVโJSON
Parses CSV to JSON object arrays using the header row as keys with numeric restoration, feeding spreadsheet exports into web APIs and frontends.
XLSXโJSON
Extracts the first XLSX worksheet to JSON object arrays with headers as keys and cached formula values, connecting spreadsheets to web apps.