Get the current discovery status and eligibility of a guild. Requires MANAGE_GUILD permission.
curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/discovery \
--header 'Authorization: <api-key>'{
"eligible": true,
"min_member_count": 123,
"application": {
"guild_id": "<string>",
"status": "<string>",
"description": "<string>",
"category_type": 123,
"applied_at": "<string>",
"reviewed_at": "<string>",
"review_reason": "<string>"
}
}User session token from login: Authorization: <token> (no prefix). Prefer a bot account over user tokens where possible.
The ID of the guild
curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/discovery \
--header 'Authorization: <api-key>'{
"eligible": true,
"min_member_count": 123,
"application": {
"guild_id": "<string>",
"status": "<string>",
"description": "<string>",
"category_type": 123,
"applied_at": "<string>",
"reviewed_at": "<string>",
"review_reason": "<string>"
}
}