Retrieves detailed profile information for a user, including bio, custom status, and badges. Optionally includes mutual friends and mutual guilds if requested. May respect privacy settings.
curl --request GET \
--url https://api.fluxer.app/v1/users/{target_id}/profile \
--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
},
"user_profile": {
"bio": "<string>",
"pronouns": "<string>",
"banner": "<string>",
"accent_color": 1073741823,
"banner_color": 1073741823
},
"guild_member": {
"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
},
"guild_member_profile": {
"bio": "<string>",
"pronouns": "<string>",
"banner": "<string>",
"accent_color": 1073741823
},
"premium_type": 0,
"premium_since": "<string>",
"premium_lifetime_sequence": 1073741823,
"mutual_friends": [
{
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
],
"mutual_guilds": [
{
"id": "<string>",
"nick": "<string>"
}
],
"connected_accounts": [
{
"id": "<string>",
"type": "bsky",
"name": "<string>",
"verified": true,
"visibility_flags": 1073741823,
"sort_order": 1073741823
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The target id
Whether to include mutual friends
Whether to include mutual guilds
Success
The user object
Show child attributes
The user profile data
Show child attributes
Show child attributes
Guild-specific profile data
Show child attributes
The type of premium subscription
0, 1, 2 ISO8601 timestamp of when premium was activated
0 <= x <= 2147483647Array of mutual friends
Show child attributes
Array of mutual guilds
Show child attributes
Array of verified external connections
Show child attributes
curl --request GET \
--url https://api.fluxer.app/v1/users/{target_id}/profile \
--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
},
"user_profile": {
"bio": "<string>",
"pronouns": "<string>",
"banner": "<string>",
"accent_color": 1073741823,
"banner_color": 1073741823
},
"guild_member": {
"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
},
"guild_member_profile": {
"bio": "<string>",
"pronouns": "<string>",
"banner": "<string>",
"accent_color": 1073741823
},
"premium_type": 0,
"premium_since": "<string>",
"premium_lifetime_sequence": 1073741823,
"mutual_friends": [
{
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
],
"mutual_guilds": [
{
"id": "<string>",
"nick": "<string>"
}
],
"connected_accounts": [
{
"id": "<string>",
"type": "bsky",
"name": "<string>",
"verified": true,
"visibility_flags": 1073741823,
"sort_order": 1073741823
}
]
}