In real cases sometimes you need use -i
option in curl to get headers
$ curl https://petstore.swagger.io/v2/pet/1 -i
HTTP/2 200
date: Wed, 26 Jul 2023 16:46:39 GMT
content-type: application/json
access-control-allow-origin: *
access-control-allow-methods: GET, POST, DELETE, PUT
access-control-allow-headers: Content-Type, api_key, Authorization
server: Jetty(9.2.9.v20150224)
{"id":1,"category":{"id":0,"name":"zbyszek"},"name":"pies","photoUrls":["string"],"tags":[{"id":0,"name":"pies"}],"status":"available"}
in that case, pure jq/json_pp/json_reformat will fail:
curl https://petstore.swagger.io/v2/pet/1 -i | jq
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 138 0 138 0 0 108 0 --:--:-- 0:00:01 --:--:-- 109
parse error: Invalid numeric literal at line 1, column 7
I offer to use ijq https://github.com/1frag/ijq that ignores non-json lines
curl https://petstore.swagger.io/v2/pet/1 -i | ijq
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 51 0 51 0 0 41 0 --:--:-- 0:00:01 --:--:-- 41
HTTP/2 404
date: Wed, 26 Jul 2023 16:51:58 GMT
content-type: application/json
access-control-allow-origin: *
access-control-allow-methods: GET, POST, DELETE, PUT
access-control-allow-headers: Content-Type, api_key, Authorization
server: Jetty(9.2.9.v20150224)
{
"code": 1,
"message": "Pet not found",
"type": "error"
}