embed.dan.onl Open in urlscan Pro
76.76.21.142  Public Scan

Submitted URL: http://embed.dan.onl/
Effective URL: https://embed.dan.onl/
Submission: On December 10 via api from US — Scanned from NL

Form analysis 0 forms found in the DOM

Text Content

DISCORD EMBED CREATOR

GitHub
Clear AllExpand AllCollapse AllShare Your Embed


AUTHOR – INFO

Author Name

Author URL
Author Icon URL


BODY – EXAMPLE TITLE

Title

Title URL
Description
This is an example description. Markdown works too! https://automatic.links >
Block Quotes ``` Code Blocks ``` *Emphasis* or _emphasis_ `Inline code` or
``inline code`` [Links](https://example.com) <@123>, <@!123>, <#123>, <@&123>,
@here, @everyone mentions ||Spoilers|| ~~Strikethrough~~ **Strong**
__Underline__
ColorEnabled?


FIELDS – 5


FIELD 1 – FIELD NAME

Move UpMove DownDelete
Name

Value
This is the field value.
Inline


FIELD 2 – THE FIRST INLINE FIELD.

Move UpMove DownDelete
Name

Value
This field is inline.
Inline


FIELD 3 – THE SECOND INLINE FIELD.

Move UpMove DownDelete
Name

Value
Inline fields are stacked next to each other.
Inline


FIELD 4 – THE THIRD INLINE FIELD.

Move UpMove DownDelete
Name

Value
You can have up to 3 inline fields in a row.
Inline


FIELD 5 – EVEN IF THE NEXT FIELD IS INLINE...

Move UpMove DownDelete
Name

Value
It won't stack with the previous inline fields.
Inline
Add Field


IMAGES

Image URL
Thumbnail URL


FOOTER – EXAMPLE FOOTER

Footer Text

Footer Icon URL
Timestamp?
Info
Example Title
This is an example description. Markdown works too! https://automatic.links/

> Block Quotes

Code Blocks

Emphasis or emphasis Inline code or inline code Links @user, @user, #channel,
@role, @here, @everyone mentions Spoilers Strikethrough Strong Underline
Field Name
This is the field value.
The first inline field.
This field is inline.
The second inline field.
Inline fields are stacked next to each other.
The third inline field.
You can have up to 3 inline fields in a row.
Even if the next field is inline...
It won't stack with the previous inline fields.


Example Footer•Today at 12:00 PM


OUTPUT

JSON representationdiscord.jsdiscord.pyserenity (rust)v13v14Builder
(Chained)Builder (Split)Object

const embed = new EmbedBuilder()
  .setAuthor({
    name: "Info",
    url: "https://example.com",
  })
  .setTitle("Example Title")
  .setURL("https://example.com")
  .setDescription("This is an example description. Markdown works too!\n\nhttps://automatic.links\n> Block Quotes\n```\nCode Blocks\n```\n*Emphasis* or _emphasis_\n`Inline code` or ``inline code``\n[Links](https://example.com)\n<@123>, <@!123>, <#123>, <@&123>, @here, @everyone mentions\n||Spoilers||\n~~Strikethrough~~\n**Strong**\n__Underline__")
  .addFields(
    {
      name: "Field Name",
      value: "This is the field value.",
      inline: false
    },
    {
      name: "The first inline field.",
      value: "This field is inline.",
      inline: true
    },
    {
      name: "The second inline field.",
      value: "Inline fields are stacked next to each other.",
      inline: true
    },
    {
      name: "The third inline field.",
      value: "You can have up to 3 inline fields in a row.",
      inline: true
    },
    {
      name: "Even if the next field is inline...",
      value: "It won't stack with the previous inline fields.",
      inline: true
    },
  )
  .setImage("https://cubedhuang.com/images/alex-knight-unsplash.webp")
  .setThumbnail("https://dan.onl/images/emptysong.jpg")
  .setColor("#00b0f4")
  .setFooter({
    text: "Example Footer",
    iconURL: "https://slate.dan.onl/slate.png",
  })
  .setTimestamp();

await message.reply({ embeds: [embed] });