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_KEYGet your API key from the Dashboard → API Keys page. Free members get 1000 requests/day. VIP members have unlimited access.
Parameters
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Game type from /api/list-games |
Request Body
| Name | Type | Required | Description |
|---|---|---|---|
userId | string | Yes | Game user ID |
serverId | string | Yes | Zone/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-legendsTest check-games with mobile-legends
API Key
Get your key from Dashboard → API Keys
Request Body