> ## 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 Eligibility

> Check if user can submit application

Check if a user meets the eligibility requirements to submit an application.

## Request

```bash theme={null}
curl -X POST https://api.series.hr/applications/check-eligibility \
  -H "apikey: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "UserId": "714760171",
    "CentreId": "centre_123"
  }'
```

## Parameters

<ParamField body="CentreId" type="string" required>
  Application centre ID
</ParamField>

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

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "UserId": "714760171",
      "eligible": true,
      "requirements": {
        "accountAgeRequired": true,
        "experiencePointsRequired": true,
        "noActiveBans": true
      }
    }
  }
  ```
</ResponseField>


## OpenAPI

````yaml POST /applications/check-eligibility
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:
  /applications/check-eligibility:
    post:
      tags:
        - Applications
      summary: Check Eligibility
      description: Check if user can submit application
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - UserId
                - CentreId
              properties:
                UserId:
                  type: string
                CentreId:
                  type: string
      responses:
        '200':
          description: Eligibility check result
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.

````