Operations (sample payloads)

Main operations
Copy

Loop Forever
Copy

Sample Input

1
{}

Sample Output

1
{
2
"index": 42
3
}

Loop List
Copy

Sample Input

1
{
2
"array": [
3
"apple",
4
"banana",
5
"cherry",
6
"date",
7
"elderberry"
8
]
9
}

Sample Output

1
{
2
"value": "cherry",
3
"count": 5,
4
"index": 2,
5
"is_first": false,
6
"is_last": false
7
}

Loop Object
Copy

Sample Input

1
{
2
"object": {
3
"name": "John Doe",
4
"age": 30,
5
"email": "johndoe@example.com",
6
"isActive": true,
7
"address": {
8
"street": "123 Main St",
9
"city": "Anytown",
10
"country": "USA"
11
},
12
"hobbies": [
13
"reading",
14
"swimming",
15
"photography"
16
]
17
}
18
}

Sample Output

1
{
2
"key": "email",
3
"value": "johndoe@example.com",
4
"is_first": false,
5
"is_last": false
6
}