Skip to main content
GET
/
game-moderation
/
check-player
Check Player
curl --request GET \
  --url https://api.series.hr/game-moderation/check-player \
  --header 'apikey: <api-key>'
Check if a specific player is banned from a game server.

Request

curl -X GET "https://api.series.hr/game-moderation/check-player?ServerId=server_abc123&UserId=714760171" \
  -H "apikey: YOUR_API_KEY"

Parameters

ServerId
string
required
Game server ID
UserId
string
required
Roblox user ID to check

Response

200
{
  "success": true,
  "data": {
    "ServerId": "server_abc123",
    "UserId": "714760171",
    "isBanned": false,
    "banReason": null,
    "bannedAt": null
  }
}
200 (Banned)
{
  "success": true,
  "data": {
    "ServerId": "server_abc123",
    "UserId": "714760171",
    "isBanned": true,
    "banReason": "Cheating detected",
    "bannedAt": "2024-01-10T14:00:00Z"
  }
}

Authorizations

apikey
string
header
required

Query Parameters

ServerId
string
required
UserId
string
required

Response

200

Player ban status