Convert JSON objects and arrays to well-formed XML. Specify a custom root element tag. Download output as an .xml file. Runs entirely in your browser.
JSON objects become XML elements. Object keys become child element tag names. Arrays produce repeated elements (with the parent key singularised). Primitive values (strings, numbers, booleans) become text content.
POST /api/v1/datatools/convert/json-to-xml — body: {"input":"...json...","rootTag":"root"}
"users": [...] produces repeated <user> elements inside a <users> wrapper.