CCXT
luno

luno implicit API

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

Every endpoint in luno'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. exchangeGetMarkets); the snake_case alias (exchange_get_markets) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (ExchangeGetMarkets). Switch tabs for the call in each language:

const luno = new ccxt.luno ();
const response = await luno.exchangeGetMarkets (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 luno API documentation: luno.com · npmjs.org · github.com

34 implicit endpoints across 4 access groups.

exchange

Base URL: https://api.luno.com/api/exchange

MethodHTTPEndpointCost
exchangeGetMarketsGETmarkets1

exchangePrivate

Base URL: https://api.luno.com/api/exchange

MethodHTTPEndpointCost
exchangePrivateGetCandlesGETcandles1

public

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

MethodHTTPEndpointCost
publicGetOrderbookGETorderbook1
publicGetOrderbookTopGETorderbook_top1
publicGetTickerGETticker1
publicGetTickersGETtickers1
publicGetTradesGETtrades1

private

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

MethodHTTPEndpointCost
privateGetAccountsIdPendingGETaccounts/{id}/pending1
privateGetAccountsIdTransactionsGETaccounts/{id}/transactions1
privateGetBalanceGETbalance1
privateGetBeneficiariesGETbeneficiaries1
privateGetSendNetworksGETsend/networks1
privateGetFeeInfoGETfee_info1
privateGetFundingAddressGETfunding_address1
privateGetListordersGETlistorders1
privateGetListtradesGETlisttrades1
privateGetSendFeeGETsend_fee1
privateGetOrdersIdGETorders/{id}1
privateGetWithdrawalsGETwithdrawals1
privateGetWithdrawalsIdGETwithdrawals/{id}1
privateGetTransfersGETtransfers1
privatePostAccountsPOSTaccounts1
privatePostAddressValidatePOSTaddress/validate1
privatePostPostorderPOSTpostorder1
privatePostMarketorderPOSTmarketorder1
privatePostStoporderPOSTstoporder1
privatePostFundingAddressPOSTfunding_address1
privatePostWithdrawalsPOSTwithdrawals1
privatePostSendPOSTsend1
privatePostOauth2GrantPOSToauth2/grant1
privatePostBeneficiariesPOSTbeneficiaries1
privatePutAccountsIdNamePUTaccounts/{id}/name1
privateDeleteWithdrawalsIdDELETEwithdrawals/{id}1
privateDeleteBeneficiariesIdDELETEbeneficiaries/{id}1

On this page