Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.
Some REST services return raw JSON arrays ([ ... ]) rather than wrapping arrays in a standard JSON object ({ "derp": [ ... ] }). This leads to the Auto response format setting in Postman failing to render/prettyprint the response.
Fortunately, an explicit JSON setting has no trouble parsing this data and pretty printing it. So it's not the Postman JSON parser so much as the format identifier code that is found wanting.
Some REST services return raw JSON arrays (
[ ... ]
) rather than wrapping arrays in a standard JSON object ({ "derp": [ ... ] }
). This leads to theAuto
response format setting in Postman failing to render/prettyprint the response.Fortunately, an explicit
JSON
setting has no trouble parsing this data and pretty printing it. So it's not the Postman JSON parser so much as the format identifier code that is found wanting.