When I access the URL directly, I see the JSON but I am getting an error when using 'fetch' to get the data. The error states that uncaught v in promise.
fetch('http://openlibrary.org/api/books?bibkeys=ISBN:157322359X&jscmd=data')
.then((resp) => {
return resp.json()
})
.then((data) => {
console.log(data);
})