Skip to content

Discord Embed Builder

Overview

The {embed} parser constructs rich Discord embed objects.


Embed Components Reference

Tag SyntaxTarget AreaDescription
{embed(title):text}TitleSets main bold header text
{embed(description):text}DescriptionSets main message body markdown
{embed(color):hex}Accent ColorSets left sidebar color (Hex e.g. 0x5865F2)
{embed(thumbnail):url}ThumbnailSets top-right square artwork
{embed(image):url}Body ImageSets large full-width image
{embed(author.name):text}Author HeaderSets small author header text
{embed(author.icon_url):url}Author IconSets small circular avatar
{embed(author.url):url}Author LinkMakes author name clickable
{embed(footer.text):text}FooterSets bottom footer text
{embed(footer.icon_url):url}Footer IconSets small icon next to footer text
{embed(field):Name~Value~inline}Field GridAdds structured field (true or false)

Complete Music Card Example

{embed(title):🎵 Now Playing}
{embed(description):**[{track.title}]({track.uri})**\nBy **{track.author}**}
{embed(thumbnail):{track.thumbnail}}
{embed(color):0x5865F2}
{embed(footer.text):Requested by {user.username}}
{embed(footer.icon_url):{user.avatar}}
{embed(field):Duration~{track.durationFormatted}~true}
{embed(field):Volume~{player.volume}%~true}
{embed(field):Queue Size~{player.queueSize} tracks~true}