BLANCO
Developer · blancodagoat.dev
DISCORD EMBED LIMITS
Discord caps every part of an embed. Exceed any one and the API rejects the whole message
with a 50035 validation error. Here is every limit in one place, plus the two
message-level caps people forget.
PER-FIELD CHARACTER LIMITS
title— 256 charactersdescription— 4096 charactersfields— up to 25 per embedfield.name— 256 charactersfield.value— 1024 charactersfooter.text— 2048 charactersauthor.name— 256 characters
MESSAGE-LEVEL LIMITS
- Up to 10 embeds in a single message.
- The combined text of all embeds in a message must stay under 6000 characters — this sum includes titles, descriptions, field names/values, footers, and author names across every embed.
GOTCHAS
- The 6000-char total is per message, not per embed — three big embeds can bust it even if each is individually valid.
- Empty strings are not the same as omitted fields; send
null/ omit rather than"". coloris a decimal integer, not a hex string —0x5865F2is5793266.timestampmust be an ISO 8601 string.
FAQ
What is the embed description limit?
4096 characters. Title is 256, field name 256, field value 1024, footer 2048, author name 256.
How many fields can an embed have?
Up to 25, each with a 256-character name and a 1024-character value.
How many embeds per message?
Up to 10, with a combined 6000-character cap across all of them. Build and validate yours in the embed builder.