> ## Documentation Index
> Fetch the complete documentation index at: https://docs.series.hr/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Player

> Check if a player is banned

Check if a specific player is banned from a game server.

## Request

```bash theme={null}
curl -X GET "https://api.series.hr/game-moderation/check-player?UserId=714760171&PlaceId=9876543210" \
  -H "apikey: YOUR_API_KEY"
```

## Parameters

<ParamField query="UserId" type="string" required>
  Roblox user ID to check
</ParamField>

<ParamField query="PlaceId" type="string" required>
  Roblox place ID
</ParamField>

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "UserId": "714760171",
      "PlaceId": "9876543210",
      "isBanned": false,
      "banReason": null,
      "bannedAt": null
    }
  }
  ```
</ResponseField>

<ResponseField status={200} name="200 (Banned)">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "UserId": "714760171",
      "PlaceId": "9876543210",
      "isBanned": true,
      "banReason": "Cheating detected",
      "bannedAt": "2024-01-10T14:00:00Z"
    }
  }
  ```
</ResponseField>


## OpenAPI

````yaml GET /game-moderation/check-player
openapi: 3.0.0
info:
  title: Series API
  version: 1.0.0
  description: >-
    Series API — a free REST API by Sailboat Games, LLC that lets Roblox
    communities programmatically manage workspaces, staff, sessions, time-off
    and activity data.
  contact:
    name: Sailboat Games, LLC.
    email: admin@sailboatgames.com
servers:
  - url: https://api.series.hr
    description: Production API
security:
  - ApiKeyAuth: []
paths:
  /game-moderation/check-player:
    get:
      tags:
        - Game Moderation
      summary: Check Player
      description: >-
        Check if a player is banned. Requires Premium or Enterprise
        subscription. Both UserId and PlaceId are required.
      parameters:
        - name: UserId
          in: query
          required: true
          schema:
            type: string
          description: The Roblox user ID to check
        - name: PlaceId
          in: query
          required: true
          schema:
            type: string
          description: The Roblox place ID
      responses:
        '200':
          description: Player ban status
        '400':
          description: UserId and PlaceId are required
        '403':
          description: Premium/Enterprise subscription required or place not connected
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Pass your API key in the `apikey` header. Alternatively, the `x-api-key`
        header is also accepted.

````