RabbitJson
🐛 Report Issue
❓ Help
JSON Input
Mode:
Realtime
Pretty
Load Example
Clear
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ "data": { "users": [ { "id": 1, "name": "John Doe", "email": "john@example.com" }, { "id": 2, "name": "Jane Smith", "email": "jane@example.com" } ] } }
Path Expression
Extracted Array
📋 Copy
1
2
3
4
5
6
7
8
9
10
11
12
[ { "id": 1, "name": "John Doe", "email": "john@example.com" }, { "id": 2, "name": "Jane Smith", "email": "jane@example.com" } ]
Template String
User #${id}: ${name} (${email})
Transformation Result
📋 Copy
1
2
User #1: John Doe (john@example.com) User #2: Jane Smith (jane@example.com)