Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Get Data From An API With windowfetch

This is how I'm pulling data from a basic API :

javascript
function getCurrentState() {
    let fetchUrl = 'https://example.com/some-api.json'
    return window.fetch(fetchUrl)
    .then(response => response.json())
    .then(response => console.log(response.someKey))
}

getCurrentState()

This works with a promise which I'm not totally sure about how you would use it with a return, but this gets you there for a start.

The payload from the api should be :

json
{ someKey: "some Value"}