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"
}
}Market Data
Get System Status
Get the current system status or trading mode.
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"
}
}Was this page helpful?
⌘I