Get Linked Accounts Retrieve alt accounts detected via shared IP addresses.
Retrieve accounts that share IP addresses with the specified player. This is used for alt account detection and is limited to a maximum of 20 results.
Requires the X-API-Key header with your server's API key.
X-API-Key: your-api-key-here
Header Type Required Description X-API-Keystring Yes Your server's API key.
Parameter Type Required Description uuidstring Yes The player's Minecraft UUID.
{
"status" : 200 ,
"linkedAccounts" : [
{
"_id" : "65a1b2c3d4e5f6a7b8c9d0e2" ,
"minecraftUuid" : "6a1e8400-e29b-41d4-a716-446655440001" ,
"usernames" : [
{
"username" : "AltAccount" ,
"date" : "2024-01-10T08:00:00.000Z"
}
],
"notes" : [],
"ipList" : [
{
"ipAddress" : "192.168.1.1" ,
"country" : "US" ,
"region" : "California" ,
"asn" : "AS12345" ,
"proxy" : false ,
"hosting" : false ,
"firstLogin" : "2024-01-10T08:00:00.000Z" ,
"logins" : 5
}
],
"punishments" : [],
"pendingNotifications" : []
}
]
}
Field Type Description linkedAccountsarray List of player profiles sharing IP addresses with the target player (max 20). Each entry follows the same profile structure as the Get Player by UUID endpoint.
Status Code Description 401Missing or invalid API key. 404Player not found for the given UUID. 429Rate limit exceeded. 500Internal server error.