Read also the documentation and play with the demo of the plugin JSON Manipulator to understand how it works and how to directly extract one specific value using JSONPath syntax:
NB: API workflows in Bubble can also get JSONs as input, but only read the 1st level (key-value pairs) and not nested JSONs inside the JSON, so maybe you have to use a plugin like this one if you need to extract nested objects.
As an example:
Correctly interpreted JSON by Bubble to extract values with basic type like text or number:
{
"key_1": "value 1",
"key_2": 2,
}
Nested Object and values at further depths not retrieved by Bubble API inputs:
{
"key_1": "value 1",
"key_2": 2,
"object_3": {
"object_key_1": "not retrieved",
"object_key_2": 6
}
}