# 🛠technical-support

Ryan Smith·12 replies
Hi guys when using api call nodes im seeing object.object as the response, is there a way i can get the data and include only relevant parts from it in response?

hello @Sumishī
When you print the response, it is an object received from the API. However, in chat, only text can be rendered. If you need to store the details separately, you can use a code block to assign different parts of the response to multiple variables and then use those variables as needed.

Receive the API call data in FLOW.last_response.
In a code node, you can map the data into variables.
FLOW.name = FLOW.last_response.user.name
Alternatively, you can use the AI response node to pass the stored data into a prompt and instruct the AI to generate human-readable text from it.