Discord Webhook Builder
This page documents the available webhook configuration options and how to structure embed messages properly.
Basic Example
Section titled “Basic Example”content: "Get ready!"color: "#FF0000"
title: text: "Example - STARTED"
fields: "1": inline: true name: "Time" value: "100"Content
Section titled “Content”The content field sends a regular Discord message.
It is the only field that supports working mentions, such as:
- Role mention:
<@&1234567890123456789> - User mention:
<@1234567890123456789> - Channel mention:
<#1234567890123456789>
Example:
content: "Content Field"Embed Structure
Section titled “Embed Structure”Title (Required)
Section titled “Title (Required)”title: text: "Title text" icon: "" # optionaltext→ Main embed titleicon→ Optional icon displayed next to the title
Color (Optional)
Section titled “Color (Optional)”color: "#RRGGBB"Defines the vertical color bar displayed on the left side of the embed.
Must be a valid HEX color.
Description (Optional)
Section titled “Description (Optional)”description: "Description text"Used for extended information inside the embed body.
Fields (Optional)
Section titled “Fields (Optional)”Multiple fields can be defined using indexed keys.
fields: "1": name: "Name" value: "Value" inline: true
"2": name: "Another Field" value: "Another Value" inline: falseField properties:
name→ Field title (required)value→ Field contentinline→ If true, fields appear side by side
Author (Optional)
Section titled “Author (Optional)”author: name: "Author Text" icon-url: "https://example.com/icon.png" url: "https://example.com"name→ Author name (required if section is used)icon-url→ Optional author avatarurl→ Optional clickable link
Footer (Optional)
Section titled “Footer (Optional)”footer: text: "Footer Text" icon: "https://example.com/footer.png"text→ Footer messageicon→ Optional footer image
Image (Optional)
Section titled “Image (Optional)”image-url: "https://example.com/image.png"Displays a large image inside the embed.
Thumbnail (Optional)
Section titled “Thumbnail (Optional)”thumbnail-url: "https://example.com/thumbnail.png"Displays a small image on the right side of the embed.