Search and filter guild members with pagination support.
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/members-search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"limit": 50,
"offset": 4503599627370495,
"role_ids": [
"<string>"
],
"joined_at_gte": 123,
"joined_at_lte": 123,
"join_source_type": [
123
],
"source_invite_code": [
"<string>"
],
"is_bot": true,
"user_created_at_gte": 123,
"user_created_at_lte": 123,
"sort_by": "joinedAt",
"sort_order": "asc"
}
'{
"guild_id": "<string>",
"members": [
{
"id": "<string>",
"guild_id": "<string>",
"user_id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"nickname": "<string>",
"role_ids": [
"<string>"
],
"joined_at": 123,
"supplemental": {
"source_invite_code": "<string>",
"inviter_id": "<string>",
"join_source_type": 0
},
"is_bot": true
}
],
"page_result_count": 123,
"total_result_count": 123,
"indexing": true
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
Text to search for in usernames, global names, and nicknames
100Maximum number of results to return
1 <= x <= 100Number of results to skip for pagination
0 <= x <= 9007199254740991Filter by role IDs (member must have all specified roles)
10Filter members who joined at or after this unix timestamp
Filter members who joined at or before this unix timestamp
Filter by join source types
10Filter by invite codes used to join
10Filter by bot status
Filter members whose account was created at or after this unix timestamp
Filter members whose account was created at or before this unix timestamp
Sort results by field
joinedAt, relevance Sort order
asc, desc Success
Guild ID
Matching members
Show child attributes
Number of results in this page
Total number of matching results
Whether the guild members are currently being indexed
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/members-search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"limit": 50,
"offset": 4503599627370495,
"role_ids": [
"<string>"
],
"joined_at_gte": 123,
"joined_at_lte": 123,
"join_source_type": [
123
],
"source_invite_code": [
"<string>"
],
"is_bot": true,
"user_created_at_gte": 123,
"user_created_at_lte": 123,
"sort_by": "joinedAt",
"sort_order": "asc"
}
'{
"guild_id": "<string>",
"members": [
{
"id": "<string>",
"guild_id": "<string>",
"user_id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"nickname": "<string>",
"role_ids": [
"<string>"
],
"joined_at": 123,
"supplemental": {
"source_invite_code": "<string>",
"inviter_id": "<string>",
"join_source_type": 0
},
"is_bot": true
}
],
"page_result_count": 123,
"total_result_count": 123,
"indexing": true
}