Skip to content

Instantly share code, notes, and snippets.

View cbrum11's full-sized avatar

Chase cbrum11

View GitHub Profile
@cbrum11
cbrum11 / JS-API-ref.js
Created May 20, 2019 18:08
JavaScript API Calls
let apiKey = "api#"
let url = "https://apiURL"
fetch(url+'&appid='+apiKey)
.then((data)=>{return data.json()})
.then(res=>{console.log(res)})