What you’re seeing is completely normal. In the second image, the JSON contains escape characters like \n (newlines) because the JSON response is being represented as a string when passed to the AI tool.
The first view (from the HTTP Response NODE) shows the parsed and formatted JSON object directly, while the second view (from the HTTP Response TOOL) shows the raw string representation that includes escape characters.
This string representation is necessary for the AI to process the JSON data, but it doesn’t affect the actual data structure or content. The AI will still be able to correctly parse and use this information despite the different visual appearance.
Hey Mohamed
thanks for your response. That makes total sense.
My biggest concern was that if the information was not structured properly, it may not understand the fields and data as well. But you have put my mind to rest.