cURL
curl --request GET \ --url https://api.series.hr/game-moderation/check-player \ --header 'apikey: <api-key>'
Check if a player is banned
curl -X GET "https://api.series.hr/game-moderation/check-player?UserId=714760171&PlaceId=9876543210" \ -H "apikey: YOUR_API_KEY"
{ "success": true, "data": { "UserId": "714760171", "PlaceId": "9876543210", "isBanned": false, "banReason": null, "bannedAt": null } }
{ "success": true, "data": { "UserId": "714760171", "PlaceId": "9876543210", "isBanned": true, "banReason": "Cheating detected", "bannedAt": "2024-01-10T14:00:00Z" } }
Pass your API key in the apikey header. Alternatively, the x-api-key header is also accepted.
apikey
x-api-key
The Roblox user ID to check
The Roblox place ID
Player ban status