Returns a list of all stickers contained within the specified pack, including sticker metadata and creator information. Results include sticker ID, name, description, tags, image URL, and the user who created each sticker.
curl --request GET \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id} \
--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 pack
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/packs/stickers/{pack_id} \
--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
}
}
]