Fetch from an api

PHOTO EMBED

Wed Oct 26 2022 12:29:02 GMT+0000 (Coordinated Universal Time)

Saved by @Cchidozie #javascript

fetch('api link')
.then(res => res.join())
.then(data => console.log(data))

//data is your api data so you can map over it etc 
content_copyCOPY