Markets
curl --request GET \
--url https://futures.kraken.com/api/charts/v1/{tick_type}import requests
url = "https://futures.kraken.com/api/charts/v1/{tick_type}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/api/charts/v1/{tick_type}', 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/api/charts/v1/{tick_type}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
"PI_XRPUSD",
"FI_XRPUSD_210625",
"FI_XBTUSD_210528",
"PI_XBTUSD"
]Candles
Markets
Markets available for specified tick type.
List of available tick types can be fetched from the tick types endpoint.
GET
/
{tick_type}
Markets
curl --request GET \
--url https://futures.kraken.com/api/charts/v1/{tick_type}import requests
url = "https://futures.kraken.com/api/charts/v1/{tick_type}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/api/charts/v1/{tick_type}', 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/api/charts/v1/{tick_type}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
"PI_XRPUSD",
"FI_XRPUSD_210625",
"FI_XBTUSD_210528",
"PI_XBTUSD"
]Path Parameters
Available options:
spot, mark, trade Response
200 - application/json
Markets list
Was this page helpful?