Check Server API Status
2/26/26Less than 1 minute
Check Server API Status
Get the open status of all API endpoints.
Endpoint: GET /test/check_server_api_state
Request Parameters
None
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | int | Yes | HTTP status code |
| api_state | dict | Yes | Open status of each endpoint |
Response Example
{
"status": 200,
"api_state": {
"/test/check_server_state": true,
"/test/check_server_state_dev": true,
"/verify/verify_id_name": false,
"/verify/verify_is_user_id_available": true,
"/verify/verify_client_version_number": true,
"/user/info/get_user_info": true,
"/user/login/login_user_info": true,
"/user/register/register_user_info": true
}
}api_state Value Description
| Value | Description |
|---|---|
true | Endpoint is open and accessible |
false | Endpoint is not open, access will return 403 error |
Information
api_state reflects the availability of each endpoint under the server's current state. Some endpoints may only be available under specific conditions.
← Back to API Documentation | ← Check Server Status (Developer Mode