Skip to main content
GET
/
accountlogcsv
Account log (CSV)
curl --request GET \
  --url https://futures.kraken.com/api/history/v3/accountlogcsv \
  --header 'APIKey: <api-key>' \
  --header 'Authent: <api-key>'
import requests

url = "https://futures.kraken.com/api/history/v3/accountlogcsv"

headers = {
"APIKey": "<api-key>",
"Authent": "<api-key>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {APIKey: '<api-key>', Authent: '<api-key>'}};

fetch('https://futures.kraken.com/api/history/v3/accountlogcsv', 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/history/v3/accountlogcsv"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("APIKey", "<api-key>")
req.Header.Add("Authent", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
"<string>"

Authorizations

APIKey
string
header
required

General API key with at least read-only access

Authent
string
header
required

Authentication string

Query Parameters

conversion_details
boolean
default:false

Include exchange rate, exchange rate from currency, and conversion fee for conversions.

Response

A CSV formatted response of most recent account log entries.