Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
    • Get System statusGET
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
logoPowered by Apifox
  1. System Endpoints

Get System status

GET/open-api/v1/system/status

This method allows to fetch system status for different wallet types and business types.

API Key permission group : Enable Enquiry

Request

Query Params
bizType
integer 
required

business type, 10: Deposit, 20: Withdrawal, 30: Transfer to binance exchange

Example:
20
timestamp
integer 
required

Current Timestamp in millisecond

Example:
1640995200000
walletType
integer 
required

wallet type, 10: Qualified wallet, 20: Prime wallet

Example:
20
Header Params
open-apikey
string 
required

OpenAPI key string

signature
string 
required

Signature of the request

Request samples

Responses

The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
required

response data, maybe null

Any of
message
string 
optional

Message,
"Normal", "System Maintenance"

status
enum<integer> <int32>
optional

Status,
0: normal
1: system_maintenance

Allowed values:
01
code
string 
required

'000000' indicates success, while any others indicate failure.

message
string 
required

When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.

Example
{
  "data": {
    "status": 0,
    "message": "Normal"
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 7 months ago