Retrieves all private channels (direct messages) accessible to the current user. Returns list of channel objects with metadata including recipient information.
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/channels \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"type": 1073741823,
"guild_id": "<string>",
"name": "<string>",
"topic": "<string>",
"url": "<string>",
"icon": "<string>",
"owner_id": "<string>",
"position": 1073741823,
"parent_id": "<string>",
"bitrate": 1073741823,
"user_limit": 1073741823,
"rtc_region": "<string>",
"last_message_id": "<string>",
"last_pin_timestamp": "2023-11-07T05:31:56Z",
"permission_overwrites": [
{
"id": "<string>",
"type": 0,
"allow": "<string>",
"deny": "<string>"
}
],
"recipients": [
{
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
],
"nsfw": true,
"rate_limit_per_user": 1073741823,
"nicks": {}
}
]Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
The unique identifier (snowflake) for this channel
The type of the channel
0 <= x <= 2147483647The name of the channel
The topic of the channel
The URL associated with the channel
The icon hash of the channel (for group DMs)
The ID of the owner of the channel (for group DMs)
0 <= x <= 2147483647The ID of the parent category for this channel
The bitrate of the voice channel in bits per second
0 <= x <= 2147483647The maximum number of users allowed in the voice channel
0 <= x <= 2147483647The voice region ID for the voice channel
The ID of the last message sent in this channel
The ISO 8601 timestamp of when the last pinned message was pinned
The permission overwrites for this channel
500Show child attributes
The recipients of the DM channel
25Show child attributes
Whether the channel is marked as NSFW
0 <= x <= 2147483647Custom nicknames for users in this channel (for group DMs)
Show child attributes
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/channels \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"type": 1073741823,
"guild_id": "<string>",
"name": "<string>",
"topic": "<string>",
"url": "<string>",
"icon": "<string>",
"owner_id": "<string>",
"position": 1073741823,
"parent_id": "<string>",
"bitrate": 1073741823,
"user_limit": 1073741823,
"rtc_region": "<string>",
"last_message_id": "<string>",
"last_pin_timestamp": "2023-11-07T05:31:56Z",
"permission_overwrites": [
{
"id": "<string>",
"type": 0,
"allow": "<string>",
"deny": "<string>"
}
],
"recipients": [
{
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
}
],
"nsfw": true,
"rate_limit_per_user": 1073741823,
"nicks": {}
}
]