K
Docs
API ReferencePiecesSend Embed
🎨

Send Embed

base.embedBase SetMessages

Sends a fancy embed card with a title, body text, and accent color. Embeds stand out in chat and look way more polished than plain text. Great for leaderboards, announcements, and summaries.

When to use this
  • Use a hex color that matches your server's vibe
  • Embeds support markdown in the body — **bold**, > quotes, etc.

On the canvas

This is what Send Embed looks like when you place it on your flow. Each field below is something you configure in the inspector panel.

🎨
Send Embed
base.embed
Messages
title
🏆 Top Scores
description
Here are this week's top players...
color
#5B21B6 (any hex color)

Config fields

FieldTypeReqWhat it does
title
🏆 Top Scores
textTitle 📌
description
Here are this week's top players...
textareaBody text 📝
color
#5B21B6 (any hex color)
textAccent color 🎨

Output ports

outputMoves on after the embed is sent
📐

In TypeScript, this would be…

Not something you need to write — just a look at what Kitcord does for you.

TypeScript
import { EmbedBuilder } from "discord.js";

const embed = new EmbedBuilder()
  .setTitle("🏆 Top Scores")
  .setDescription(leaderboardText)
  .setColor(0x5b21b6);

await channel.send({ embeds: [embed] });
// Spell: await interaction.reply({ embeds: [embed] });