Back to Ccxt

Luno

wiki/exchanges-implicit/luno.md

4.5.644.1 KB
Original Source

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:

<!-- tabs:start -->

JavaScript

javascript
const luno = new ccxt.luno ();
const response = await luno.exchangeGetMarkets (params);

TypeScript

typescript
import ccxt from 'ccxt';
const luno = new ccxt.luno ();
const response = await luno.exchangeGetMarkets (params);

Python

python
import ccxt
luno = ccxt.luno()
response = luno.exchange_get_markets(params)

PHP

php
$luno = new \ccxt\luno();
$response = $luno->exchange_get_markets($params);

C#

csharp
using ccxt;
var luno = new Luno();
var response = await luno.exchangeGetMarkets(parameters);

Go

go
luno := ccxt.NewLuno(nil)
response := <-luno.ExchangeGetMarkets(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 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