POST

/api/check-games

Validate a game user account by User ID and Server ID. Requires API Key.

Authentication

Required Header
x-api-key: YOUR_API_KEY

Get your API key from the Dashboard → API Keys page. Free members get 1000 requests/day. VIP members have unlimited access.

Parameters

Query Parameters

NameTypeRequiredDescription
typestringYesGame type from /api/list-games

Request Body

NameTypeRequiredDescription
userIdstringYesGame user ID
serverIdstringYesZone/Server ID

Example Request

curl -X POST 'https://mylix.app/api/check-games?type=mobile-legends' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY' \
  -d '{"userId": "123456789", "serverId": "1234"}'

Example Response

200Success
{
  "status": 200,
  "message": "Data successfully retrieved",
  "data": {
    "username": "kangyann.",
    "country": "Indonesia"
  }
}
404Not Found
{
  "status": 404,
  "message": "Not found user with this userId: 123456789"
}

Try It Live

POST/api/check-games?type=mobile-legends
Test check-games with mobile-legends
API Key

Get your key from Dashboard → API Keys

Request Body