const fetch = require("node-fetch") fetch(`https://api.imgflip.com/get_memes`) .then((response) => { return response.json(); }) .then((myJson) => { console.log(myJson); });