Blogs-Marketplace-Banners
// The ES6 import below requires "type":"module" in package.json. // Alternatively, use require() to import axios or another HTTP library. import fetch from 'node-fetch'; try { const response = await fetch('https://wheelofnames.com/api'); const text = await response.text(); console.log(text); } catch (error) { console.error(error); }