Skip to content

Instantly share code, notes, and snippets.

@cbrum11
Created May 20, 2019 18:08
Show Gist options
  • Save cbrum11/51202468684a47df9be7a523137171e4 to your computer and use it in GitHub Desktop.
Save cbrum11/51202468684a47df9be7a523137171e4 to your computer and use it in GitHub Desktop.
JavaScript API Calls
let apiKey = "api#"
let url = "https://apiURL"
fetch(url+'&appid='+apiKey)
.then((data)=>{return data.json()})
.then(res=>{console.log(res)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment