XML to JSON
Convert an XML document into JSON.
Loading tool…
About the xml to json
Converts XML into JSON, keeping attributes under an @_ prefix so they stay distinguishable from child elements. Suitable for SOAP responses, RSS feeds and legacy configuration files you would rather handle as plain objects.
Frequently asked questions
Why do repeated elements sometimes collapse?
A single occurrence of an element becomes a value, while repeats become an array. If your consumer expects an array either way, normalise it after conversion — the shape depends on the sample.
Are namespaces preserved?
Prefixes are kept as part of the key name, so soap:Body becomes a key called soap:Body. Full namespace URI resolution is not performed.