Skip to main content
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))

}
[]

Path Parameters

tick_type
enum<string>
required
Available options:
spot,
mark,
trade
symbol
string
required

Market symbol

Response

200 - application/json

All resolutions for the given tick_type and symbol

Available options:
1m,
5m,
15m,
30m,
1h,
4h,
12h,
1d,
1w