Check if User is a Cheater
2/26/26About 1 min
Check if User is a Cheater
Check if the currently logged-in user is marked as a cheater.
Endpoint: GET /verify/verify_is_user_cheater
Request Headers
| Parameter | Required | Description |
|---|---|---|
| Content-Type | Yes | Fixed value: application/json |
| Authorization | Yes | Bearer token, user authentication token |
Request Parameters
None
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | int | Yes | HTTP status code |
| code | string | Yes | Verification result code |
| result | string | Yes | Verification result |
| data | dict | Yes | Cheating information data |
data Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| user_name | string | No | User's name (only returned when user is marked as cheater) |
| user_id | string | No | User ID number (only returned when user is marked as cheater) |
| machine_code | string | No | Machine code (only returned when user is marked as cheater) |
| launch_code | string | No | Launch code (only returned when user is marked as cheater) |
| ban_reason | string | No | Ban reason (only returned when user is marked as cheater) |
| ban_time | string | No | Ban time (ISO 8601 format, only returned when user is marked as cheater) |
Success Response Example
User Has Been Marked as a Cheater
{
"status": 200,
"code": "10003",
"result": "User has been marked as a cheater",
"data": {
"user_name": "Example User",
"user_id": "110***********1234",
"machine_code": "abcd1234efgh5678ijkl9012mnop3456",
"launch_code": "LAUNCH202602230001",
"ban_reason": "Cheating behavior detected",
"ban_time": "2026-02-23T10:00:00"
}
}No Cheating Records Found Under User Account
{
"status": 200,
"code": "10000",
"result": "No cheating records found under user account",
"data": {}
}Error Response Example
Endpoint Not Open
{
"status": 403,
"code": "10002",
"result": "Server has not opened this endpoint",
"data": {}
}Token Expired or Invalid
{
"status": 401,
"code": "10001",
"result": "Token expired or invalid",
"data": {}
}Error Code Description
| Code | Description |
|---|---|
| 10000 | No cheating records found under user account |
| 10001 | Token expired or invalid |
| 10002 | Server has not opened this endpoint |
| 10003 | User has been marked as a cheater |
Tip
This endpoint can be used to check if a user has been flagged for cheating. It requires the user to be logged in.
← Back to API Documentation | ← Check if User ID is Available | → Check if Machine Code is Available