Json Sorter - Sort Json keys online

Input data
bfotool loadding
Output data
bfotool loadding

About JSON Sorter Tool

The purpose of the JSON Sorter tool is to sort key names and key values, this can be both alphabetical and numerical values, and can be sorted ascending or descending (reversed).

JSON (JavaScript Object Notation) is a lightweight data-interchange format, it's useful for exchanging data from client to server, or from server to client.

What can you do with the JSON Sorter tool?

  • Sort JSON by key names or values, alphabetical and numerical, ascending or descending.
  • Fast, free, and simple, all you need to do is enter valid JSON text.
  • Copy or download the sorted JSON text.

How to Json Sort?

Follow these steps to quickly Json Sort from your text.
1. Enter the input
  • Paste your text with accents in the input area.
2. Click Remove
  • Click "Json Sort" to process your text.
3. All done
  • Your data is ready. Click the "Copy to Clipboard" button, and you should be ready to rock!

Json Sort Example

Input

[
	{
		"id": 1,
		"name": "A",
		"age": 20
	},
	{
		"id": 2,
		"name": "B",
		"age": 34
	},
	{
		"id": 3,
		"name": "C",
		"age": 28
	}
]

Output

[
	{
		"age": 20,
		"id": 1,
		"name": "A"
	},
	{
		"age": 34,
		"id": 2,
		"name": "B"
	},
	{
		"age": 28,
		"id": 3,
		"name": "C"
	}
]