Hi @firetech.
From your output bundle it seems like the “company”,“name” etc fields that you want are not actually fields at all. They are all contained in the value of the first element “result”.
In order to get these values each time there is some data manipulation that you must do first.
Step 1 is to get the value of result.
Step 2 is to split this into several texts to separate the desired values, something like split(data;###). That way you end up with different texts that each of them somewhat contains the info you want.
Step 3 is to Iterate through your outputs from step 2. You still have a text but no Key:Value pairs to use “name” etc.
Step 4 is to aggregate it all together into a Json format
Step 5 is to use a Json parser to create your final form of keys and values so you can use whatever is returned.
Here is what you should do. I made an example with the “result” text, so I am bypassing step 1:
That’s the way to achieve this with the minimum operations.