List guild stickers. Returns all custom stickers for the guild including metadata about creators, descriptions, and tags.
curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/stickers \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true,
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
}
]Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
Success
The unique identifier for this sticker
The name of the sticker
The description of the sticker
Autocomplete/suggestion tags for the sticker
100Whether this sticker is animated
Show child attributes
curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/stickers \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true,
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
}
]