CCXT
krakenfutures

krakenfutures implicit API

Every raw krakenfutures endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

Every endpoint in krakenfutures's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C# and Go. Call them by the camelCase name shown in the tables below (e.g. publicGetFeeschedules); the snake_case alias (public_get_feeschedules) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetFeeschedules). Switch tabs for the call in each language:

const krakenfutures = new ccxt.krakenfutures ();
const response = await krakenfutures.publicGetFeeschedules (params);

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official krakenfutures API documentation: docs.kraken.com

39 implicit endpoints across 4 access groups.

public

Base URL: https://futures.kraken.com/derivatives/api/

MethodHTTPEndpointCost
publicGetFeeschedulesGETfeeschedules
publicGetInstrumentsGETinstruments
publicGetOrderbookGETorderbook
publicGetTickersGETtickers
publicGetHistoryGEThistory
publicGetHistoricalfundingratesGEThistoricalfundingrates

private

Base URL: https://futures.kraken.com/derivatives/api/

MethodHTTPEndpointCost
privateGetFeeschedulesVolumesGETfeeschedules/volumes
privateGetOpenpositionsGETopenpositions
privateGetNotificationsGETnotifications
privateGetAccountsGETaccounts
privateGetOpenordersGETopenorders
privateGetRecentordersGETrecentorders
privateGetFillsGETfills
privateGetTransfersGETtransfers
privateGetLeveragepreferencesGETleveragepreferences
privateGetPnlpreferencesGETpnlpreferences
privateGetAssignmentprogramCurrentGETassignmentprogram/current
privateGetAssignmentprogramHistoryGETassignmentprogram/history
privateGetOrdersStatusGETorders/status
privatePostSendorderPOSTsendorder
privatePostEditorderPOSTeditorder
privatePostCancelorderPOSTcancelorder
privatePostTransferPOSTtransfer
privatePostBatchorderPOSTbatchorder
privatePostCancelallordersPOSTcancelallorders
privatePostCancelallordersafterPOSTcancelallordersafter
privatePostWithdrawalPOSTwithdrawal
privatePostAssignmentprogramAddPOSTassignmentprogram/add
privatePostAssignmentprogramDeletePOSTassignmentprogram/delete
privatePutLeveragepreferencesPUTleveragepreferences
privatePutPnlpreferencesPUTpnlpreferences

charts

Base URL: https://futures.kraken.com/api/charts/

MethodHTTPEndpointCost
chartsGetPriceTypeSymbolIntervalGET{price_type}/{symbol}/{interval}

history

Base URL: https://futures.kraken.com/api/history/

MethodHTTPEndpointCost
historyGetOrdersGETorders
historyGetExecutionsGETexecutions
historyGetTriggersGETtriggers
historyGetAccountlogcsvGETaccountlogcsv
historyGetAccountLogGETaccount-log
historyGetMarketSymbolOrdersGETmarket/{symbol}/orders
historyGetMarketSymbolExecutionsGETmarket/{symbol}/executions

On this page