Instruments
Get instrument status list
Returns price dislocation and volatility details for all markets.
GET
Get instrument status list
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns price dislocation and volatility details for all markets.
curl --request GET \
--url https://futures.kraken.com/derivatives/api/v3/instruments/statusimport requests
url = "https://futures.kraken.com/derivatives/api/v3/instruments/status"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/derivatives/api/v3/instruments/status', 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://futures.kraken.com/derivatives/api/v3/instruments/status"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"instrumentStatus": [
{
"tradeable": "PF_BTCUSD",
"experiencingDislocation": true,
"experiencingExtremeVolatility": true,
"extremeVolatilityInitialMarginMultiplier": 123
}
],
"result": "success",
"serverTime": "2020-08-27T17:03:33.196Z"
}curl --request GET \
--url https://futures.kraken.com/derivatives/api/v3/instruments/statusimport requests
url = "https://futures.kraken.com/derivatives/api/v3/instruments/status"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/derivatives/api/v3/instruments/status', 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://futures.kraken.com/derivatives/api/v3/instruments/status"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"instrumentStatus": [
{
"tradeable": "PF_BTCUSD",
"experiencingDislocation": true,
"experiencingExtremeVolatility": true,
"extremeVolatilityInitialMarginMultiplier": 123
}
],
"result": "success",
"serverTime": "2020-08-27T17:03:33.196Z"
}