Skip to main content
GET
https://api.docksys.xyz
/
api
/
v1
/
public
/
roblox-to-discord
Map Roblox ID to Discord IDs
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
}

Documentation Index

Fetch the complete documentation index at: https://docs.docksys.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

robloxId
string
required

The Roblox user ID.

guildId
string
required

The Discord guild ID.

Response

Successful response with linked Discord IDs.

status
enum<integer>

The HTTP status code of the response.

Available options:
200
data
object
timestamp
string<date-time>

The timestamp of the response in ISO 8601 format.

version
string

The API version.

Example:

"1.0.0"

requestsRemaining
integer | null

Number of requests remaining in the daily quota.

ipRequestsRemaining
integer | null

Remaining IP-linked quota shared across API keys detected on the same IP.