Skip to content
Fluxer API

Expressions

An expression is a custom emoji or a sticker that one guild owns. The two routes here resolve an expression from its own identifier, without membership of the owning guild.

ObjectRouteOwning resource
Emoji metadataGet emoji metadataGuild emojis
Sticker metadataGet sticker metadataGuild stickers

Both routes are read-only, and neither writes an audit entry or emits a Gateway Dispatch.

An identifier that names no stored expression returns 404 UNKNOWN_EMOJI or 404 UNKNOWN_STICKER. A stored expression whose guild no longer exists returns 404 UNKNOWN_GUILD.

Both routes return the metadata even when the owning guild has UNAVAILABLE_FOR_EVERYONE.

One custom emoji, readable from outside its guild. It adds the owning guild to the guild emoji object and drops the adult content classification and the uploader.

FieldTypeDescription
id1snowflakeThe ID of the emoji
guild_id2snowflakeThe ID of the guild that owns the emoji
name3stringThe name of the emoji (2-32 characters)
animated4booleanWhether the stored image is animated
allow_cloning5booleanWhether the owning guild permits the emoji to be copied

1 Unique across every guild, so the emoji is addressable without its guild

2 This resource has no guild name and no guild icon

3 Create guild emoji restricts the value to ASCII letters, digits, and underscore, and cloning copies it unchanged

4 Fluxer detects this from the submitted image at creation, and the value never changes

5 False exactly when the owning guild has CLONE_EMOJI_DISABLED

Every member is always present, and no member is nullable.

{
"id": "1501314428688998182",
"guild_id": "1489002177550843904",
"name": "party_parrot",
"animated": true,
"allow_cloning": true
}

One sticker, readable from outside its guild. It adds the owning guild to the guild sticker object and drops the description, the tags, the adult content classification, and the uploader.

FieldTypeDescription
id1snowflakeThe ID of the sticker
guild_id2snowflakeThe ID of the guild that owns the sticker
name3stringThe name of the sticker (2-30 characters)
animated4booleanWhether the stored image is animated
allow_cloning5booleanWhether the owning guild permits the sticker to be copied

1 Unique across every guild, so the sticker is addressable without its guild

2 This resource has no guild name and no guild icon

3 The value accepts any character

4 Fluxer detects this from the submitted image at creation, and the value never changes

5 False exactly when the owning guild has CLONE_STICKER_DISABLED

Every member is always present, and no member is nullable.

{
"id": "1501314428688998183",
"guild_id": "1489002177550843904",
"name": "shipit",
"animated": false,
"allow_cloning": false
}
GET/v1/emojis/{emoji_id}/metadataBot

Returns the emoji metadata object of any guild emoji. The route requires no membership of the owning guild and evaluates no permission.

FieldTypeDescription
emoji_idsnowflakeThe ID of the emoji
StatusBodyCondition
200emoji metadata objectMetadata was returned
4041error responseEmoji does not exist, or its owning guild no longer exists

1 The error code is UNKNOWN_EMOJI for a missing emoji and UNKNOWN_GUILD when the emoji record survives but its guild does not

60 requests per 10 seconds for each authenticated user, on the guild:emoji:metadata::user_id bucket, and every emoji the account looks up draws on that one budget.

GET/v1/stickers/{sticker_id}/metadataBot

Returns the sticker metadata object of any guild sticker. The route requires no membership of the owning guild and evaluates no permission.

FieldTypeDescription
sticker_idsnowflakeThe ID of the sticker
StatusBodyCondition
200sticker metadata objectMetadata was returned
4041error responseSticker does not exist, or its owning guild no longer exists

1 The error code is UNKNOWN_STICKER for a missing sticker and UNKNOWN_GUILD when the sticker record survives but its guild does not

60 requests per 10 seconds for each authenticated user, on the guild:sticker:metadata::user_id bucket, and every sticker the account looks up draws on that one budget.