🚀 Dock Config v1.3.0 — The all-new Config Studio is live. Verification + Welcome setup in one place with real-time previews.
curl --request GET \
--url https://api.docksys.xyz/api/v1/public/roblox-to-discord \
--header 'Authorization: Bearer <token>'{
"status": 200,
"data": {
"robloxId": "12345",
"discordIds": [
"67890",
"54321"
]
},
"timestamp": "2025-09-27T20:12:56Z",
"version": "1.0.0",
"requestsRemaining": 499,
"ipRequestsRemaining": 98
}Resolve a Roblox user ID to its linked Discord account or accounts, with expanded Discord member data on Premium.
curl --request GET \
--url https://api.docksys.xyz/api/v1/public/roblox-to-discord \
--header 'Authorization: Bearer <token>'{
"status": 200,
"data": {
"robloxId": "12345",
"discordIds": [
"67890",
"54321"
]
},
"timestamp": "2025-09-27T20:12:56Z",
"version": "1.0.0",
"requestsRemaining": 499,
"ipRequestsRemaining": 98
}robloxId and linked discordIds, plus
response metadata like version and remaining quota.resolved.discord object
with expanded Discord user and guild-member details.Standard keys
timestamp and
requestsRemaining.Premium keys
resolved.discord object keyed by Discord user ID.{
"status": 200,
"data": {
"robloxId": "1234567890",
"discordIds": ["135791357913579135"]
},
"timestamp": "2025-11-15T20:12:56Z",
"version": "1.1.0",
"requestsRemaining": 499
}
resolved object.{
"status": 200,
"data": {
"robloxId": "1234567890",
"discordIds": ["135791357913579135"]
},
"resolved": {
"discord": {
"135791357913579135": {
"displayName": "DockSystems",
"username": "docksystems",
"id": "135791357913579135",
"avatar": "https://cdn.discordapp.com/embed/avatars/1.png",
"banner": null,
"nickname": "Dock",
"joinedAt": "2023-06-14T11:22:03Z",
"createdAt": "2020-04-13T17:22:05Z",
"roles": [
{
"id": "998877665544332211",
"name": "Member"
},
{
"id": "112233445566778899",
"name": "Verified"
}
]
}
}
},
"timestamp": "2025-11-15T20:12:56Z",
"version": "1.1.0",
"requestsRemaining": 499
}
resolved.discord.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The Roblox user ID.
The Discord guild ID.
Successful response with linked Discord IDs.
The HTTP status code of the response.
200 Show child attributes
The timestamp of the response in ISO 8601 format.
The API version.
"1.0.0"
Number of requests remaining in the daily quota.
Remaining IP-linked quota shared across API keys detected on the same IP.