Fetch team members
curl --request GET \
--url https://api.duckybot.xyz/team{
"code": 200,
"message": "All Ducky Team members have been successfully fetched.",
"data": [
{
"discord_id": "598958193032560642",
"color": "#38B6FF",
"avatar": "https://cdn.discordapp.com/avatars/598958193032560642/b4a9105d349cc3e9c3d5c0d3b24adbb8.png",
"username": "troptopreal",
"role": "Lead Developer",
"name": "trop",
"category": "dev",
"position": 5
},
{
"discord_id": "782235114858872854",
"color": "#38B6FF",
"avatar": "https://cdn.discordapp.com/avatars/782235114858872854/fff448ad33f613c223ee3771fd659fab.png",
"username": "bobbibones",
"role": "Senior Developer",
"name": "bobbi",
"category": "dev",
"position": 4
},
// ...
]
}
Internal Endpoints
Fetch team members
Fetch the team members who maintain Ducky.
GET
/
team
Fetch team members
curl --request GET \
--url https://api.duckybot.xyz/team{
"code": 200,
"message": "All Ducky Team members have been successfully fetched.",
"data": [
{
"discord_id": "598958193032560642",
"color": "#38B6FF",
"avatar": "https://cdn.discordapp.com/avatars/598958193032560642/b4a9105d349cc3e9c3d5c0d3b24adbb8.png",
"username": "troptopreal",
"role": "Lead Developer",
"name": "trop",
"category": "dev",
"position": 5
},
{
"discord_id": "782235114858872854",
"color": "#38B6FF",
"avatar": "https://cdn.discordapp.com/avatars/782235114858872854/fff448ad33f613c223ee3771fd659fab.png",
"username": "bobbibones",
"role": "Senior Developer",
"name": "bobbi",
"category": "dev",
"position": 4
},
// ...
]
}
{
"code": 200,
"message": "All Ducky Team members have been successfully fetched.",
"data": [
{
"discord_id": "598958193032560642",
"color": "#38B6FF",
"avatar": "https://cdn.discordapp.com/avatars/598958193032560642/b4a9105d349cc3e9c3d5c0d3b24adbb8.png",
"username": "troptopreal",
"role": "Lead Developer",
"name": "trop",
"category": "dev",
"position": 5
},
{
"discord_id": "782235114858872854",
"color": "#38B6FF",
"avatar": "https://cdn.discordapp.com/avatars/782235114858872854/fff448ad33f613c223ee3771fd659fab.png",
"username": "bobbibones",
"role": "Senior Developer",
"name": "bobbi",
"category": "dev",
"position": 4
},
// ...
]
}
Response Data
In this endpoint, the response data is an array of objects.
Show properties
Show properties
The team member’s username.
The team member’s display name.
The team member’s avatar URL.
The team member’s Discord ID.
The team member’s role.
A hex code representing the team member’s role color.
The team member’s position category.
The team member’s position within their category.
⌘I