Vandals Memes

I make memes...

Merch

// Function to retrieve Instagram feed data async function getInstagramFeed() { try { // Make HTTP request to the Instagram API endpoint const response = await fetch('API_ENDPOINT'); // Check if the request was successful if (response.ok) { const data = await response.json(); return data; } else { throw new Error('Failed to retrieve Instagram feed data'); } } catch (error) { console.error(error); } } // Call the function to retrieve the Instagram feed data const instagramFeed = getInstagramFeed();