Back to Ccxt

Latoken

wiki/exchanges-implicit/latoken.md

4.5.645.7 KB
Original Source

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

<!-- tabs:start -->

JavaScript

javascript
const latoken = new ccxt.latoken ();
const response = await latoken.publicGetBookCurrencyQuote (params);

TypeScript

typescript
import ccxt from 'ccxt';
const latoken = new ccxt.latoken ();
const response = await latoken.publicGetBookCurrencyQuote (params);

Python

python
import ccxt
latoken = ccxt.latoken()
response = latoken.public_get_book_currency_quote(params)

PHP

php
$latoken = new \ccxt\latoken();
$response = $latoken->public_get_book_currency_quote($params);

C#

csharp
using ccxt;
var latoken = new Latoken();
var response = await latoken.publicGetBookCurrencyQuote(parameters);

Go

go
latoken := ccxt.NewLatoken(nil)
response := <-latoken.PublicGetBookCurrencyQuote(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 latoken API documentation: api.latoken.com

52 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetBookCurrencyQuoteGETbook/{currency}/{quote}1
publicGetChartWeekGETchart/week1
publicGetChartWeekCurrencyQuoteGETchart/week/{currency}/{quote}1
publicGetCurrencyGETcurrency1
publicGetCurrencyAvailableGETcurrency/available1
publicGetCurrencyQuotesGETcurrency/quotes1
publicGetCurrencyCurrencyGETcurrency/{currency}1
publicGetPairGETpair1
publicGetPairAvailableGETpair/available1
publicGetTickerGETticker1
publicGetTickerBaseQuoteGETticker/{base}/{quote}1
publicGetTimeGETtime1
publicGetTradeHistoryCurrencyQuoteGETtrade/history/{currency}/{quote}1
publicGetTradeFeeCurrencyQuoteGETtrade/fee/{currency}/{quote}1
publicGetTradeFeeLevelsGETtrade/feeLevels1
publicGetTransactionBindingsGETtransaction/bindings1

private

MethodHTTPEndpointCost
privateGetAuthAccountGETauth/account1
privateGetAuthAccountCurrencyCurrencyTypeGETauth/account/currency/{currency}/{type}1
privateGetAuthOrderGETauth/order1
privateGetAuthOrderGetOrderIdGETauth/order/getOrder/{id}1
privateGetAuthOrderPairCurrencyQuoteGETauth/order/pair/{currency}/{quote}1
privateGetAuthOrderPairCurrencyQuoteActiveGETauth/order/pair/{currency}/{quote}/active1
privateGetAuthStopOrderGETauth/stopOrder1
privateGetAuthStopOrderGetOrderIdGETauth/stopOrder/getOrder/{id}1
privateGetAuthStopOrderPairCurrencyQuoteGETauth/stopOrder/pair/{currency}/{quote}1
privateGetAuthStopOrderPairCurrencyQuoteActiveGETauth/stopOrder/pair/{currency}/{quote}/active1
privateGetAuthTradeGETauth/trade1
privateGetAuthTradePairCurrencyQuoteGETauth/trade/pair/{currency}/{quote}1
privateGetAuthTradeFeeCurrencyQuoteGETauth/trade/fee/{currency}/{quote}1
privateGetAuthTransactionGETauth/transaction1
privateGetAuthTransactionBindingsGETauth/transaction/bindings1
privateGetAuthTransactionBindingsCurrencyGETauth/transaction/bindings/{currency}1
privateGetAuthTransactionIdGETauth/transaction/{id}1
privateGetAuthTransferGETauth/transfer1
privatePostAuthOrderCancelPOSTauth/order/cancel1
privatePostAuthOrderCancelAllPOSTauth/order/cancelAll1
privatePostAuthOrderCancelAllCurrencyQuotePOSTauth/order/cancelAll/{currency}/{quote}1
privatePostAuthOrderPlacePOSTauth/order/place1
privatePostAuthSpotDepositPOSTauth/spot/deposit1
privatePostAuthSpotWithdrawPOSTauth/spot/withdraw1
privatePostAuthStopOrderCancelPOSTauth/stopOrder/cancel1
privatePostAuthStopOrderCancelAllPOSTauth/stopOrder/cancelAll1
privatePostAuthStopOrderCancelAllCurrencyQuotePOSTauth/stopOrder/cancelAll/{currency}/{quote}1
privatePostAuthStopOrderPlacePOSTauth/stopOrder/place1
privatePostAuthTransactionDepositAddressPOSTauth/transaction/depositAddress1
privatePostAuthTransactionWithdrawPOSTauth/transaction/withdraw1
privatePostAuthTransactionWithdrawCancelPOSTauth/transaction/withdraw/cancel1
privatePostAuthTransactionWithdrawConfirmPOSTauth/transaction/withdraw/confirm1
privatePostAuthTransactionWithdrawResendCodePOSTauth/transaction/withdraw/resendCode1
privatePostAuthTransferEmailPOSTauth/transfer/email1
privatePostAuthTransferIdPOSTauth/transfer/id1
privatePostAuthTransferPhonePOSTauth/transfer/phone1