Resolutions
curl --request GET \
--url https://futures.kraken.com/api/charts/v1/{tick_type}/{symbol}import requests
url = "https://futures.kraken.com/api/charts/v1/{tick_type}/{symbol}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/api/charts/v1/{tick_type}/{symbol}', 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}/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
"1m"
]Candles
Resolutions
Candle resolutions available for specified tick type and market.
List of available tick types can be fetched from the tick types endpoint. List of available markets can be fetched from the markets endpoint.
GET
/
{tick_type}
/
{symbol}
Resolutions
curl --request GET \
--url https://futures.kraken.com/api/charts/v1/{tick_type}/{symbol}import requests
url = "https://futures.kraken.com/api/charts/v1/{tick_type}/{symbol}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/api/charts/v1/{tick_type}/{symbol}', 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}/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
"1m"
]Was this page helpful?