Retrieves a paginated list of users who reacted to a message with a specific emoji. Supports pagination via limit and after parameters. Returns user objects for each reaction.
curl --request GET \
--url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/reactions/{emoji} \
--header 'Authorization: <api-key>'[
{
"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 channel
The ID of the message
The emoji
Maximum number of users to return (1-100)
1 <= x <= 100Success
The unique identifier (snowflake) for this user
The username of the user, not unique across the platform
The four-digit discriminator tag of the user
The display name of the user, if set
The hash of the user avatar image
The dominant avatar color of the user as an integer
0 <= x <= 2147483647The public flags on the user account
0 <= x <= 2147483647Whether the user is a bot account
Whether the user is an official system user
curl --request GET \
--url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/reactions/{emoji} \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
]