Discord Webhook Generator
Build rich Discord webhook messages with full embed support — colors, fields, authors, images, footers and more. Send directly to Discord or copy the JSON payload. The best free discohook alternative.
0/2000
Supports @mentions, links, and markdown. Max 2000 characters.
Discord Preview
LivePreview will appear here
Add content or an embed to get started
JSON Payload
{}What is a Discord Webhook?
A Discord webhook is a simple way to post messages into a Discord channel automatically, without needing a bot account logged in. You generate a webhook URL from your Discord server's channel settings, then send HTTP POST requests to it with a JSON payload. Webhooks are used for GitHub commit notifications, monitoring alerts, custom bots, server announcements, and any integration that needs to post into Discord programmatically. Our webhook generator lets you build and send rich embed messages to any Discord webhook in seconds — no code required.
How to Create a Discord Webhook
- Open Discord and navigate to the server where you want to post messages.
- Right-click the channel and choose Edit Channel, then go to Integrations → Webhooks.
- Click Create Webhook, give it a name and optional avatar, then click Copy Webhook URL.
- Paste the URL into the field above, build your message, and click Send to Discord.
Discord Webhook Embed Components
Discord webhook messages support rich embeds — structured cards with multiple components. Here's what each component does:
Color
Left-side color bar of the embed. Uses hex (#5865F2) or decimal values.
Author
Small name/link/icon displayed above the title. Good for branding.
Title
Bold heading, optionally a clickable link to any URL.
Description
Main body text. Supports full Discord markdown formatting.
Fields
Name/value pairs, optionally displayed inline (side by side, up to 3).
Image
Large image displayed below the description and fields.
Thumbnail
Small image in the top-right corner of the embed.
Footer
Small text and icon at the bottom. Good for metadata or branding.
Timestamp
Date/time shown in the footer. Rendered in the user's local timezone.
Discord Webhook JSON Format
The JSON payload for a Discord webhook message looks like this. Copy it from the JSON panel above and use it in your code:
{
"username": "My Bot",
"avatar_url": "https://example.com/avatar.png",
"content": "Hello from the webhook!",
"embeds": [{
"title": "Embed Title",
"description": "Embed description with **markdown** support.",
"color": 5793266,
"author": { "name": "Author Name", "url": "https://...", "icon_url": "https://..." },
"fields": [
{ "name": "Field 1", "value": "Value 1", "inline": true },
{ "name": "Field 2", "value": "Value 2", "inline": true }
],
"image": { "url": "https://example.com/image.png" },
"thumbnail": { "url": "https://example.com/thumb.png" },
"footer": { "text": "Footer text", "icon_url": "https://..." },
"timestamp": "2026-01-01T00:00:00.000Z"
}]
}Frequently Asked Questions
Is this a free discohook alternative?
Yes — our Discord Webhook Generator is completely free with no account required. It supports all the same embed components as discohook.app and discohook.org, including colors, fields, authors, images, thumbnails, footers, and timestamps.
Can I send multiple embeds in one message?
Yes! Discord supports up to 10 embeds per webhook message. Click 'Add Embed' to add more. Each embed can have its own color, title, description, fields, images, and footer.
Why isn't my webhook URL working?
Make sure the URL starts with https://discord.com/api/webhooks/ and that you haven't deleted or reset the webhook in Discord. Also ensure the channel still exists and the bot has permission to post there.
Can I use markdown in embeds?
Yes — Discord markdown works in embed descriptions and field values. Use **bold**, *italic*, `code`, ~~strikethrough~~, ||spoilers||, and > block quotes.
What is the embed color format?
Discord embed colors are decimal integers. Our tool accepts HEX (like #5865F2) and automatically converts to decimal (5793266). The left border of the embed shows your chosen color.