Paste your JSON below and click "Convert" to transform it into XML.
About this tool
Converts a JSON object or array into an equivalent XML document, entirely in your browser. Useful when integrating with older systems or APIs that expect XML rather than JSON.
Frequently asked questions
How are JSON arrays represented in the XML output?
Each array item becomes a repeated child element under its parent tag — the standard, most-compatible way to express a list in XML, since XML itself has no native array type.
What happens to JSON keys that aren't valid XML tag names?
Keys with spaces or characters XML doesn't allow in element names are sanitized to the closest valid representation, since XML tag names have stricter rules than JSON object keys.