🐰 RabbitJson
❓ Help
JSON Input
Mode:
Realtime
Select Example
Book List Transformation
Nested Data Extraction
Math Operations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ "books": [ { "name": "The Alchemist", "author": "Paulo Coelho", "price": 200 }, { "name": "The Monk Who Sold His Ferrari", "author": "Robin Sharma", "price": 300 } ] }
Path Expression
Extracted Array
1
Template String
Book Name: ${name} by ${author} - ${price}
Transformation Result
1