Run multiple curls at once in bash to access micro-service

for item in {status,info,health}; do curl -s http://localhost:8080/microservice/${item} | python -m json.tool; done