Search for a tool or command
Analyze JSON size, depth, key counts, and type distribution.
The JSON Statistics tool measures your document and reports metrics that describe its structure and scale. See the total number of keys, the maximum nesting depth, counts by value type, array lengths, and the byte size. It turns an opaque payload into a clear profile you can use to reason about complexity and performance.
Add the document you want to analyze into the input.
The tool computes size, depth, counts, and type distribution instantly.
Read the breakdown to understand the document's scale and complexity.
Use the findings to spot bloat, deep nesting, or unexpected structure.
Input
{
"users": [
{ "id": 1, "active": true },
{ "id": 2, "active": false }
]
}Output
Keys: 5 | Objects: 3 | Arrays: 1
Max depth: 3
Types: number 2, boolean 2, array 1, object 3Explore JSON as a collapsible, interactive tree.
Pretty-print JSON with configurable indentation and instant validation.
Flatten nested JSON into single-level dot-notation key paths.
Compare two JSON documents and see a precise structural diff.