Get System Status
GET/public/SystemStatus
Get the current system status or trading mode.
Responses
- 200
Success response
- application/json
- Schema
- Example (from schema)
Schema
online
Kraken is operating normally. All order types may be submitted and trades can occur.maintenance
The exchange is offline. No new orders or cancellations may be submitted.cancel_only
Resting (open) orders can be cancelled but no new orders may be submitted. No trades will occur.post_only
Only post-only limit orders can be submitted. Existing orders may still be cancelled. No trades will occur.
result
status string
Possible values: [online
, maintenance
, cancel_only
, post_only
]
Current system status:
timestamp string
Current timestamp (RFC3339)
error string[]
{
"error": [],
"result": {
"status": "online",
"timestamp": "2023-07-06T18:52:00Z"
}
}
Loading...