JSON Sorter
Sort JSON arrays and object properties in ascending or descending order.
Multiple sort algorithms
Custom sort keys
Nested sorting support
JSON Input
Ready
Input Information
Items:
0
Type:
-
Sorted JSON
Waiting
Sort Information
Method:
-
Order:
-
Array Sorting
Input:
[{"name": "John", "age": 30}, {"name": "Jane", "age": 25}]
Sort by age (ascending):
[{"name": "Jane", "age": 25}, {"name": "John", "age": 30}]
Object Key Sorting
Input:
{"zebra": 1, "apple": 2, "banana": 3}
Sorted keys:
{"apple": 2, "banana": 3, "zebra": 1}