Returns a list of all emojis contained within the specified pack, including emoji metadata and creator information. Results include emoji ID, name, image URL, and the user who created each emoji.
curl --request GET \
--url https://api.fluxer.app/v1/packs/emojis/{pack_id} \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"name": "<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
curl --request GET \
--url https://api.fluxer.app/v1/packs/emojis/{pack_id} \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"animated": true,
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
}
]