Simple REST API for random animal images. Perfect for StreamElements and Twitch integration.
/api/animal?type=ANIMAL_TYPEReplace ANIMAL_TYPE with: elephants, cats, dogs, etc.
${customapi./api/animal?type=elephants}fetch('/api/animal?type=cats')
.then(response => response.text())
.then(imageUrl => {
document.getElementById('img').src = imageUrl;
});curl "/api/animal?type=dogs"