Tick Types
curl --request GET \
--url https://futures.kraken.com/api/charts/v1/import requests
url = "https://futures.kraken.com/api/charts/v1/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/api/charts/v1/', 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/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[]Candles
Tick Types
Returns all available tick types to use with the markets endpoint.
GET
/
Tick Types
curl --request GET \
--url https://futures.kraken.com/api/charts/v1/import requests
url = "https://futures.kraken.com/api/charts/v1/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/api/charts/v1/', 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/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[]Response
200 - application/json
Tick types list
Available options:
spot, mark, trade Was this page helpful?
⌘I