Get System Status
curl --request GET \
--url https://api.kraken.com/0/public/SystemStatusimport requests
url = "https://api.kraken.com/0/public/SystemStatus"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.kraken.com/0/public/SystemStatus', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/0/public/SystemStatus"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"error": [],
"result": {
"status": "online",
"timestamp": "2023-07-06T18:52:00Z",
"upcoming_maintenance": [],
"emergency": []
}
}
Market Data
Get System Status
Get the current system status or trading mode, along with any scheduled maintenance or ongoing emergency advisories.
The upcoming_maintenance and emergency fields are additive — clients that do not read them are unaffected. Both are arrays; empty or absent when no advisory is active.
upcoming_maintenancecarries scheduled events that are within 72 hours. An event is removed once its maintenance window starts.emergencycarries unresolved status page incidents. An incident is removed when it reachesresolved.
The top-level status field remains driven by the trading engine and is
independent of both arrays: an advisory describes why a state is happening
or coming — it does not dictate engine state.
GET
/
public
/
SystemStatus
Get System Status
curl --request GET \
--url https://api.kraken.com/0/public/SystemStatusimport requests
url = "https://api.kraken.com/0/public/SystemStatus"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.kraken.com/0/public/SystemStatus', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/0/public/SystemStatus"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"error": [],
"result": {
"status": "online",
"timestamp": "2023-07-06T18:52:00Z",
"upcoming_maintenance": [],
"emergency": []
}
}
Was this page helpful?