Skip to main content
POST
/
guilds
/
{guild_id}
/
emojis
Create guild emoji
curl --request POST \
  --url https://api.fluxer.app/v1/guilds/{guild_id}/emojis \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "image": "aSDinaTvuI8gbWludGxpZnk="
}
'
{
  "id": "<string>",
  "name": "<string>",
  "animated": true
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Path Parameters

guild_id
string<snowflake>
required

The ID of the guild

Body

application/json
name
string
required

The name of the emoji (2-32 characters, alphanumeric and underscores only)

image
string<byte>
required

Base64-encoded image data

Response

Success

id
string
required

The unique identifier for this emoji

name
string
required

The name of the emoji

animated
boolean
required

Whether this emoji is animated