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?UserId=714760171&PlaceId=9876543210" \
  -H "apikey: YOUR_API_KEY"

Parameters

UserId
string
required
Roblox user ID to check
PlaceId
string
required
Roblox place ID

Response

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

Authorizations

apikey
string
header
required

Pass your API key in the apikey header. Alternatively, the x-api-key header is also accepted.

Query Parameters

UserId
string
required

The Roblox user ID to check

PlaceId
string
required

The Roblox place ID

Response

Player ban status