Retrieve Data from API


When im retrieveing Data from an API like in the Screenshot how many API Calls will be made to enrich the Data?
only one or for every cell?

I have no idea what the question is but will try to answer what I assume the question is. As in the case you present - each cell will make another call.

But you can avoid it.

Change the api call from DATA to ACTION.
Make a single action to call the endpoint with proper parameters (whatever you need to send).
Put a response from this call in make a change to a thing flow you have presented, referring the step 1 call.

If it’s an exposed backend workflow it’s even better and then you can also define the parameters to make it smoother (else you can parse the response in any other way). Hope I guessed your question correctly.