CCXT
kraken

kraken implicit API

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

Every endpoint in kraken'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#, Go and Java. Call them by the camelCase name shown in the tables below (e.g. zendeskGet201893608); the snake_case alias (zendesk_get_201893608) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (ZendeskGet201893608). Switch tabs for the call in each language:

const kraken = new ccxt.kraken ();
const response = await kraken.zendeskGet201893608 (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 kraken API documentation: docs.kraken.com

61 implicit endpoints across 3 access groups.

zendesk

Base URL: https://kraken.zendesk.com/api/v2/help_center/en-us/articles

MethodHTTPEndpointCost
zendeskGet201893608GET2018936081
zendeskGet360000292886GET3600002928861

public

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

MethodHTTPEndpointCost
publicGetTimeGETTime1
publicGetSystemStatusGETSystemStatus1
publicGetAssetsGETAssets1
publicGetAssetPairsGETAssetPairs1
publicGetTickerGETTicker1
publicGetOHLCGETOHLC1.2
publicGetDepthGETDepth1.2
publicGetGroupedBookGETGroupedBook1.2
publicGetTradesGETTrades1.2
publicGetSpreadGETSpread1
publicGetPreTradeGETPreTrade1
publicGetPostTradeGETPostTrade1

private

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

MethodHTTPEndpointCost
privatePostLevel3POSTLevel31.2
privatePostBalancePOSTBalance3
privatePostBalanceExPOSTBalanceEx3
privatePostCreditLinesPOSTCreditLines3
privatePostTradeBalancePOSTTradeBalance3
privatePostOpenOrdersPOSTOpenOrders3
privatePostClosedOrdersPOSTClosedOrders3
privatePostQueryOrdersPOSTQueryOrders3
privatePostOrderAmendsPOSTOrderAmends3
privatePostTradesHistoryPOSTTradesHistory6
privatePostQueryTradesPOSTQueryTrades3
privatePostOpenPositionsPOSTOpenPositions3
privatePostLedgersPOSTLedgers6
privatePostQueryLedgersPOSTQueryLedgers3
privatePostTradeVolumePOSTTradeVolume3
privatePostAddExportPOSTAddExport3
privatePostExportStatusPOSTExportStatus3
privatePostRetrieveExportPOSTRetrieveExport3
privatePostRemoveExportPOSTRemoveExport3
privatePostGetApiKeyInfoPOSTGetApiKeyInfo3
privatePostAddOrderPOSTAddOrder0
privatePostAmendOrderPOSTAmendOrder0
privatePostCancelOrderPOSTCancelOrder0
privatePostCancelAllPOSTCancelAll3
privatePostCancelAllOrdersAfterPOSTCancelAllOrdersAfter3
privatePostGetWebSocketsTokenPOSTGetWebSocketsToken3
privatePostAddOrderBatchPOSTAddOrderBatch0
privatePostCancelOrderBatchPOSTCancelOrderBatch0
privatePostEditOrderPOSTEditOrder0
privatePostDepositMethodsPOSTDepositMethods3
privatePostDepositAddressesPOSTDepositAddresses3
privatePostDepositStatusPOSTDepositStatus3
privatePostWithdrawMethodsPOSTWithdrawMethods3
privatePostWithdrawAddressesPOSTWithdrawAddresses3
privatePostWithdrawInfoPOSTWithdrawInfo3
privatePostWithdrawPOSTWithdraw3
privatePostWithdrawStatusPOSTWithdrawStatus3
privatePostWithdrawCancelPOSTWithdrawCancel3
privatePostWalletTransferPOSTWalletTransfer3
privatePostCreateSubaccountPOSTCreateSubaccount3
privatePostAccountTransferPOSTAccountTransfer3
privatePostEarnAllocatePOSTEarn/Allocate3
privatePostEarnDeallocatePOSTEarn/Deallocate3
privatePostEarnAllocateStatusPOSTEarn/AllocateStatus3
privatePostEarnDeallocateStatusPOSTEarn/DeallocateStatus3
privatePostEarnStrategiesPOSTEarn/Strategies3
privatePostEarnAllocationsPOSTEarn/Allocations3

On this page