fetch("some-url") .then(function(response) { if(response.status!==200) { throw new Error(response.status) } }) .catch(function(error) { ///if status code 401... });