Formatter tools for readable JSON, SQL, XML, HTML, and logs

Formatters are most useful when raw text is valid enough to parse but too dense to reason about. This page groups the formatting tools developers reach for during API debugging, query review, incident notes, and copied log cleanup.

Tools in this workflow

Related guides

FAQ

Do formatters change the data?

A formatter should only change whitespace, indentation, and readability. If values or field names change, stop and compare the original input before using the result.

Should I format before validating?

If the tool can validate and format together, run both. Invalid JSON, XML, or SQL fragments can only be formatted on a best-effort basis.