Emojis
Emoji are small images that can be used to convey an idea or emotion. Discord allows users to upload custom emoji to guilds and use them like normal emoji in-chat and when reacting to messages.
name 2
string
The name of the emoji (2-32 characters)
roles?
array[snowflake]
The roles allowed to use the emoji
require_colons?
boolean
Whether this emoji must be wrapped in colons
managed?
boolean
Whether this emoji is managed
animated?
boolean
Whether this emoji is animated
available?
boolean
Whether this emoji can be used; may be false due to loss of premium subscriptions (boosts)
1 Only included for emoji when fetched through the Get Guild Emojis or Get Guild Emoji endpoints by a user with the permission. Always included when fetched from Get Application Emojis or Get Application Emoji.
2 This may be in the case of a custom emoji that has been deleted.
Roles with the tag being the guild's integration are considered subscription roles. An emoji cannot have both subscription roles and non-subscription roles. Emoji with subscription roles are considered premium emoji, and count toward a separate limit of 25. Emoji cannot be converted between normal and premium after creation.
An application can own up to 2,000 emoji that can only be used by the app. The permission is not required to use these emoji. These emoji do not support role-locking and always require colons. They are never managed or unavailable.
{ "id": "41771983429993937", "name": "LUL", "roles": ["41771983429993000", "41771983429993111"], "user": { "id": "306810730055729152", "username": "owoer", "avatar": "b3028be18dc56db5722bd750cf69df4e", "discriminator": "0", "public_flags": 4194816, "banner": null, "accent_color": null, "global_name": "Eon", "avatar_decoration_data": null, "primary_guild": null }, "require_colons": true, "managed": false, "animated": false}
Gateway Reaction Standard Emoji Example
{ "id": null, "name": "🔥"}
Gateway Reaction Custom Emoji Examples
{ "id": "41771983429993937", "name": "LUL", "animated": true}
{ "id": "41771983429993937", "name": null}
GET/guilds/{guild.id}/emojis
Returns a list of emoji objects for the given guild. Includes the field if the user has the or permission.
GET/guilds/{guild.id}/emojis/{emoji.id}
Returns an emoji object for the given guild and emoji IDs. Includes the field if the user has the or permission.
GET/guilds/{guild.id}/top-emojis
Returns the most-used emojis for the given guild.
emoji_id
snowflake
The ID of the emoji
emoji_rank
integer
The overall rank of the emoji
{ "items": [ { "emoji_id": "1145727546747535412", "emoji_rank": 1 }, { "emoji_id": "1174435954090594505", "emoji_rank": 2 }, { "emoji_id": "1029462631163117629", "emoji_rank": 3 }, { "emoji_id": "1030570693903011921", "emoji_rank": 4 }, { "emoji_id": "1077714345825407067", "emoji_rank": 5 } ]}
GET/emojis/{emoji.id}/guild
Returns a discoverable guild object for the guild that owns the given emoji. This endpoint requires the guild to be discoverable, not be auto-removed, and have guild expression discoverability enabled.
GET/emojis/{emoji.id}/source
Returns an object containing information on the guild or application that owns the given emoji. If the source is a guild, this endpoint requires the guild to be discoverable, not be auto-removed, and have guild expression discoverability enabled.
GUILD
The emoji is uploaded to a guild
APPLICATION
The emoji is uploaded to an application
id
snowflake
The ID of the guild
name
string
The name of the guild (2-100 characters)
description
?string
The description for the guild (max 300 characters)
premium_subscription_count
integer
The number of premium subscriptions (boosts) the guild currently has
approximate_member_count
integer
Approximate number of total members in the guild
approximate_presence_count
integer
Approximate number of non-offline members in the guild
id
snowflake
The ID of the application
name
string
The name of the application
{ "guild": { "id": "322850917248663552", "name": "Official Fortnite", "icon": "39e9f70c87a3d20dfe02e5f013b417f4", "emojis": [], "approximate_member_count": 1068003, "approximate_presence_count": 163598, "description": "The Official Fortnite Discord Server! Join to follow news & updates, LFG, and chat about Fortnite Battle Royale.", "features": [ "ANIMATED_BANNER", "ANIMATED_ICON", "AUTO_MODERATION", "BANNER", "CHANNEL_ICON_EMOJIS_GENERATED", "COMMUNITY", "COMMUNITY_EXP_LARGE_UNGATED", "DISCOVERABLE", "FEATURABLE", "GUILD_MEMBER_VERIFICATION_EXPERIMENT", "GUILD_WEB_PAGE_VANITY_URL", "INVITE_SPLASH", "MEMBER_PROFILES", "MEMBER_VERIFICATION_GATE_ENABLED", "NEWS", "NEW_THREAD_PERMISSIONS", "PREVIEW_ENABLED", "PRIVATE_THREADS", "ROLE_ICONS", "SEVEN_DAY_THREAD_ARCHIVE", "SOUNDBOARD", "THREADS_ENABLED", "THREE_DAY_THREAD_ARCHIVE", "VANITY_URL", "VERIFIED", "VIP_REGIONS" ], "premium_subscription_count": 378, "premium_tier": 3 }, "application": null, "type": "GUILD"}
POST/guilds/{guild.id}/emojis
Creates a new emoji for the guild. Requires the permission. Returns the new emoji object on success. Fires a Guild Emojis Update Gateway event.
name
string
The name of the emoji (2-32 characters)
roles?
array[snowflake]
The roles allowed to use this emoji
PATCH/guilds/{guild.id}/emojis/{emoji.id}
Modifies the given emoji. For emojis created by the current user, requires either the or permission. For other emojis, requires the permission. Returns the updated emoji object on success. Fires a Guild Emojis Update Gateway event.
name?
string
The name of the emoji (2-32 characters)
roles?
?array[snowflake]
The roles allowed to use this emoji
DELETE/guilds/{guild.id}/emojis/{emoji.id}
Deletes the given emoji. For emojis created by the current user, requires either the or permission. For other emojis, requires the permission. Returns a 204 empty response on success. Fires a Guild Emojis Update Gateway event.
GET/applications/{application.id}/emojis
Returns an object containing a list of emoji objects for the given application under the key. Includes the field.
GET/applications/{application.id}/emojis/{emoji.id}
Returns an emoji object for the given application and emoji IDs. Includes the field.
POST/applications/{application.id}/emojis
Creates a new emoji for the application. Returns the new emoji object on success.
name 1
string
The name of the emoji (2-32 characters)
1 The names of application emoji must be unique.
PATCH/applications/{application.id}/emojis/{emoji.id}
Modifies the given emoji. Returns the updated emoji object on success.
name? 1
string
The name of the emoji (2-32 characters)
DELETE/applications/{application.id}/emojis/{emoji.id}
Delete the given emoji. Returns a 204 empty response on success.