List guild members. Supports pagination with limit and after cursor. Returns member information for the specified guild.
curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/members \
--header 'Authorization: <api-key>'[
{
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
},
"roles": [
"<string>"
],
"joined_at": "2023-11-07T05:31:56Z",
"mute": true,
"deaf": true,
"nick": "<string>",
"avatar": "<string>",
"banner": "<string>",
"accent_color": 1073741823,
"communication_disabled_until": "2023-11-07T05:31:56Z",
"profile_flags": 1073741823
}
]Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
Maximum number of members to return (1-1000, default 1)
1 <= x <= 1000Success
Show child attributes
Array of role IDs the member has
250ISO8601 timestamp of when the user joined the guild
Whether the member is muted in voice channels
Whether the member is deafened in voice channels
The nickname of the member in this guild
The hash of the member guild-specific avatar
The hash of the member guild-specific banner
The accent colour of the member guild profile as an integer
0 <= x <= 2147483647ISO8601 timestamp until which the member is timed out
Member profile flags
0 <= x <= 2147483647curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/members \
--header 'Authorization: <api-key>'[
{
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
},
"roles": [
"<string>"
],
"joined_at": "2023-11-07T05:31:56Z",
"mute": true,
"deaf": true,
"nick": "<string>",
"avatar": "<string>",
"banner": "<string>",
"accent_color": 1073741823,
"communication_disabled_until": "2023-11-07T05:31:56Z",
"profile_flags": 1073741823
}
]