Convert XML documents to JSON format with intelligent attribute handling, namespace support, and nested element preservation. Transform SOAP responses, RSS feeds, and XML configs into modern JSON structures.
<?xml version="1.0"?>
<person>
<name>John Doe</name>
<age>30</age>
<email>john@example.com</email>
</person>{
"person": {
"name": "John Doe",
"age": 30,
"email": "john@example.com"
}
}<?xml version="1.0"?>
<book id="123" category="fiction">
<title>The Great Novel</title>
<author>Jane Smith</author>
<price currency="USD">29.99</price>
</book>{
"book": {
"@id": "123",
"@category": "fiction",
"title": "The Great Novel",
"author": "Jane Smith",
"price": {
"@currency": "USD",
"#text": 29.99
}
}
}<?xml version="1.0"?>
<users>
<user>
<name>Alice</name>
<role>admin</role>
</user>
<user>
<name>Bob</name>
<role>editor</role>
</user>
</users>{
"users": {
"user": [
{"name": "Alice", "role": "admin"},
{"name": "Bob", "role": "editor"}
]
}
}Format, validate, and beautify JSON data instantly with syntax highlighting. Parse minified JSON, fix formatting issues, and visualize JSON structure with tree view for debugging APIs and config files.
Convert between YAML and JSON formats bidirectionally. Transform Kubernetes configs, Docker Compose files, CI/CD pipelines, and configuration files between human-readable YAML and machine-friendly JSON.