XML в JSON
Документы XML в JSON
Ввод XML
Вывод JSON
Turn XML responses into modern JSON objects
When you have to integrate with a SOAP service, RSS feed, or legacy XML API, you don't want XML living in your codebase. Converting XML to JSON gives you a familiar object shape — attributes prefixed with @, elements as keys, and text content as values — that fits cleanly into JavaScript, TypeScript, Python, or any modern stack.
Use the converter when you need to
Process a SOAP response in modern code
Convert the XML envelope to JSON and work with attributes and elements as plain object properties.
Parse RSS, Atom, or sitemap feeds
Aggregators and crawlers often need feed data as JSON for downstream processing — convert once and pipe forward.
Inspect XML structure quickly
Converting to JSON makes it easy to drop the document into a JSON viewer or query with JSONPath.
How to convert XML to JSON quickly
- 1
Paste the XML document into the editor.
- 2
Click Convert to produce JSON where attributes use the @ prefix and elements become keys.
- 3
Copy the JSON output or download it for use in your code.
Keep going
Convert JSON back to XML
Round-trip the data when responding to a SOAP or B2B partner.
Format the JSON output
Beautify the converted JSON for easier inspection.
Validate the converted JSON
Make sure the output parses cleanly before passing it to your code.
Explore the converted data
Use tree view to verify how attributes and nested elements were mapped.
Common XML-to-JSON workflows
Wrap an XML API in a JSON adapter and gradually replace the legacy code without breaking consumers.
Convert each feed to JSON and merge them into a single uniform array.
Convert the document to JSON and walk it in a viewer instead of trying to read raw XML.
Похожие инструменты
Часто задаваемые вопросы
Вставьте XML и нажмите «Преобразовать». Элементы, атрибуты и текст превращаются в структурированный JSON. Атрибуты помечаются префиксом @, чтобы отличать от дочерних элементов.
Атрибуты становятся свойствами с префиксом @. Например <book id="1"> → {"book":{"@id":"1"}} — так атрибуты отделены от вложенных элементов.
В браузере комфортно до нескольких мегабайт. Для очень больших файлов (100 МБ+) лучше серверный или потоковый парсер.
Да. Содержимое CDATA извлекается как обычный текст в JSON без обёртки CDATA.