REST Get is seeming to complete, but does not return the full JSON string

The API call https://api.weather.gov/gridpoints/PHI/47,71/forecast/hourly will return the JSON file right from one’s browser bar.

However, when I use the REST Web Service node GET Request, it returns the following;

test-API.knwf (7.2 KB)

How can I obtain and parse the full JSON message?

The GET request returned a binary formatted result. Use a Binary to String node on the body column and you’ll have your json as a multi-line string, which you can then format as json using a String to JSON node.

4 Likes

Thank you, that allowed me to proceed with the following, ending up with just the table I was looking for;

image

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.