Tutorial: Make API requests, part 3
Part 3 of this tutorial demonstrates how to manipulate the JSON string returned from the Amazon Petstore API call in your previous flow.
This is the JSON string:
Copy
[
{
"id": 4,
"type": "Dog",
"price": 999.99
},
{
"id": 5,
"type": "Dog",
"price": 249.99
},
{
"id": 6,
"type": "Dog",
"price": 49.97
}
]
Steps in this Tutorial
Watch the video
Note
After the video was produced, an update introduced a check on type in the List Pluck card. The video does not include steps 11 through 14 or 16 from Step 1: Parse the results.