Parsed XML tree will appear here
Click on elements to expand/collapse
About XML Viewer
Paste XML and navigate it as an interactive tree. Expand elements, view attributes, and understand complex document structures. Essential for working with SOAP APIs, config files, and legacy systems.
XML is still everywhere—RSS feeds, SOAP APIs, SVG files, Office documents, and countless enterprise systems. This viewer parses your XML and presents it as a collapsible tree with syntax highlighting.
How to use XML Viewer
Paste your XML into the input area.
The tree view renders automatically.
Click elements to expand/collapse.
View attributes shown on each element.
Use Expand All to see the complete structure.
Examples
Basic XML tree
Elements become expandable nodes:
<catalog>
<book id="bk101">
<author>Author Name</author>
<title>Book Title</title>
</book>
</catalog>
Tree View:
▾ catalog
▾ book [id="bk101"]
author: "Author Name"
title: "Book Title"Attributes display
Attributes shown alongside element names:
<element attr="value" type="test">
Content here
</element>
Display:
▾ element [attr="value", type="test"]
"Content here"Common XML formats
This viewer handles all XML-based formats:
RSS feeds: <rss><channel><item>... SOAP: <soap:Envelope><soap:Body>... SVG: <svg><circle><path>... Config: <configuration><appSettings>... Office: <w:document><w:body>...
Features
When to use this
- •Exploring SOAP API responses
- •Debugging configuration files
- •Inspecting SVG file structure
- •Analyzing RSS/Atom feeds
- •Working with Office Open XML
- •Legacy system integration