Skip to main content

What are Embeds?

Embeds are rich message formats that allow you to create beautiful, organized messages with custom colors, images, and buttons. They’re perfect for welcome messages, announcements, or any important information you want to stand out.

Creating an Embed

Every embed starts with {embed}$v. This tells the bot you want to make an embed. After that, you add your parameters:
{embed}$v
{title: Welcome to our server!}$v
{description: Hello {user.mention}!}$v
{color: #ff0000}
New to embeds? Start with our visual embed builder at fume.rest/embed - it’s easier than writing code!

Basic Structure

  • Each line starts with { and ends with }
  • Use : to separate the parameter from its content
  • Use $v at the end of each line (except the last one)
  • Use && to separate multiple values in one parameter

Available Parameters

{title: Your Title Here}
{description: Your main message here}
{color: #ff0000}  // Use hex color codes
{url: https://example.com}  // Makes title clickable
{thumbnail: https://image-url.com}  // Small image in top right
{image: https://image-url.com}      // Large image below description
// All in one line:
{author: AUTHOR_NAME && ICON_URL && CLICK_URL}

// Example:
{author: {user} && {user.avatar} && https://example.com}
// Format: link && label && url
{button: link && Click Me! && https://example.com}

// You can add multiple buttons:
{button: link && Website && https://fume.rest}$v
{button: link && Support && https://discord.gg/fume}

// Note: All buttons must be 'link' type and have valid https:// or http:// URLs
{timestamp:}  // Adds current time
{message: Text outside embed}  // Adds normal message above embed
{self.destruct}  // Makes message delete after 7 seconds

Complete Examples

{embed}$v
{title: Welcome!}$v
{description: Hey {user.mention}, welcome to {guild.name}!}$v
{color: #7289da}
{embed}$v
{author: Welcome to {guild.name} && {guild.icon}}$v
{description: Hey {user.mention}! Thanks for joining us.}$v
{thumbnail: {user.avatar}}$v
{color: #2ecc71}$v
{footer: Member #{guild.count}}$v
{timestamp:}$v
{button: link && Rules && https://example.com/rules}

Common Mistakes to Avoid

  • Don’t forget {embed}$v at the start
  • Add $v after each line (except the last one)
  • Use && (not &) to separate multiple values
  • Always use hex codes for colors (like #ff0000)
  • URLs must start with https:// or http://
  • Buttons must use the link type
  • Button format must be exactly: {button: link && Label && URL}
Still stuck? Join our support server for help with your embeds!