Back to Ccxt

Krakenfutures

wiki/exchanges-implicit/krakenfutures.md

4.5.644.7 KB
Original Source

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:

<!-- tabs:start -->

JavaScript

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

TypeScript

typescript
import ccxt from 'ccxt';
const krakenfutures = new ccxt.krakenfutures ();
const response = await krakenfutures.publicGetFeeschedules (params);

Python

python
import ccxt
krakenfutures = ccxt.krakenfutures()
response = krakenfutures.public_get_feeschedules(params)

PHP

php
$krakenfutures = new \ccxt\krakenfutures();
$response = $krakenfutures->public_get_feeschedules($params);

C#

csharp
using ccxt;
var krakenfutures = new Krakenfutures();
var response = await krakenfutures.publicGetFeeschedules(parameters);

Go

go
krakenfutures := ccxt.NewKrakenfutures(nil)
response := <-krakenfutures.PublicGetFeeschedules(params)
<!-- tabs:end -->

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