api.eres.fun - docs

/images/4k?token=TOKEN

Get a random 4k 🔞 image.


/images/ass?token=TOKEN

Get a random 🍑 image.


/images/condom?token=TOKEN

Get a random condom 🍆 image.


/images/creampie?token=TOKEN

Get a random creampie 💦 image.


/images/gifs?token=TOKEN

Get a random gif 🔞 image.


/images/pussy?token=TOKEN

Get a random 🌸 image.


/images/tits?token=TOKEN

Get a random 🍒 image.

Here is an example how to use our API with discord.js and fetch a random image:


// Define you api.eres.fun personal api key and import discord.js library
let TOKEN = 'api.eres.fun api key here';
const { EmbedBuilder } = require('discord.js');

// Fetch a random 4k 🔞 image from the API
const result = await fetch(`https://api.eres.fun/images/4k/?token=${TOKEN}`).then((res) => res.json());

// Create an embed with the 🔞 image
const embed = new EmbedBuilder()
.setColor(0x2B2D31)
.setTitle('4k 🔞')
.setURL(result.url)
.setImage(result.url)
.setFooter({ text: 'api.eres.fun' });

// Send the embed as a reply to the interaction
await interaction.reply({ embeds: [embed] });