JavaScript API (URL)

fetch(url)//using API url
    .then(res => res.json()) // parse response as JSON
    .then(data => {
      console.log(data)
    })
    .catch(err => {
        console.log(`error ${err}`)
    });
BLESSING VICTOR