Data
GET/api/v1/wallet-status
Fetch the latest wallet status for asset from given exchange.
Request
Query Parameters
exchange stringrequired
Specifes exchange
Example: binance
asset stringrequired
Specifies asset
Example: USDT
Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
currency string
Example:
USDT
exchange string
Example:
binance
message string
Example:
Deposit: Wallet Maintenance
network string
Example:
BSC
updatedAt integer
Example:
1728533401
walletState string
Example:
paused, withdraw-only, deposit-only, ok
[
{
"currency": "USDT",
"exchange": "binance",
"message": "Deposit: Wallet Maintenance",
"network": "BSC",
"updatedAt": 1728533401,
"walletState": "paused, withdraw-only, deposit-only, ok"
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Loading...