redEmbed
V 1.0

Documentation

Introduction Limitations Examples

Resources

selfBot Guide

Tools

Builder

History

Change Log
redsmods.com • Made with ❤️ by Red
Software documentationscreenshot

Introduction

redEmbed, a Service Powering a Way for Developers to Use Embeds in a Discord selfBot.

Send Embeds Using Custom Built Web Embeds, with the Red Mods API.

This is the Official redEmbed Documentation.

Limitations

Since they are Web Embeds, There are Limitations.


- No Footers.
- Max 340 Characters in a Description / Title.

        

Examples

Generate a Embed URL Using the redEmbed API:


@bot.command()
async def embed(ctx, embedTitle, embedDescription, embedURL, embedHexColorCode, hidden, embedImage):
    # Prepare the data to send
    data = {
        'embedTitle': embedTitle,
        'embedDescription': embedDescription,
        'embedURL': embedURL,
        'embedHexColorCode': embedHexColorCode,
        'hidden': hidden,  # Include the hidden parameter
        'embedImage': embedImage
            }
                        
            # Send a POST request to the PHP backend
            response = requests.post('https://redsmods.com/api/redEmbed.php', data=data)
                        
            # Parse the JSON response
            result = response.json()
                        
            if 'url' in result:
                await ctx.send(f'Here is your embed link: {result["url"]}')
            else:
                await ctx.send(f'Error: {result["error"]}')
                

Sending a Basic Embed as a Message:


@bot.command()
async def sendEmbed(ctx):
    redEmbed = "GENERATED_REDEMBED_LINK_HERE" # Embed Link To Display

    await ctx.message.delete() # Deletes the Message that Executes the Command
    await ctx.send(redEmbed) # Send Embed
                

selfBot Guide

Software documentationscreenshot

Dive deep into an Educational Guide for Discord selfBots.

Change Log - (Last Updated: 9/5/2025)


Below are the latest updates and patch notes:

  • Version 1.0: Official Release

Builder