Retrieves public user information by user ID. Returns basic profile details like username, avatar, and status. Does not include private or sensitive user data.
curl --request GET \
--url https://api.fluxer.app/v1/users/{user_id} \
--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 user
Success
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/users/{user_id} \
--header 'Authorization: <api-key>'{
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}