CCXT
lbank

lbank implicit API

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

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

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

58 implicit endpoints across 2 access groups.

spot

MethodHTTPEndpointCost
spotPublicGetCurrencyPairsGETcurrencyPairs2.5
spotPublicGetAccuracyGETaccuracy2.5
spotPublicGetUsdToCnyGETusdToCny2.5
spotPublicGetAssetConfigsGETassetConfigs2.5
spotPublicGetWithdrawConfigsGETwithdrawConfigs3.75
spotPublicGetTimestampGETtimestamp2.5
spotPublicGetTicker24hrGETticker/24hr2.5
spotPublicGetTickerGETticker2.5
spotPublicGetDepthGETdepth2.5
spotPublicGetIncrDepthGETincrDepth2.5
spotPublicGetTradesGETtrades2.5
spotPublicGetKlineGETkline2.5
spotPublicGetSupplementSystemPingGETsupplement/system_ping2.5
spotPublicGetSupplementIncrDepthGETsupplement/incrDepth2.5
spotPublicGetSupplementTradesGETsupplement/trades2.5
spotPublicGetSupplementTickerPriceGETsupplement/ticker/price2.5
spotPublicGetSupplementTickerBookTickerGETsupplement/ticker/bookTicker2.5
spotPublicPostSupplementSystemStatusPOSTsupplement/system_status2.5
spotPrivatePostUserInfoPOSTuser_info2.5
spotPrivatePostSubscribeGetKeyPOSTsubscribe/get_key2.5
spotPrivatePostSubscribeRefreshKeyPOSTsubscribe/refresh_key2.5
spotPrivatePostSubscribeDestroyKeyPOSTsubscribe/destroy_key2.5
spotPrivatePostGetDepositAddressPOSTget_deposit_address2.5
spotPrivatePostDepositHistoryPOSTdeposit_history2.5
spotPrivatePostCreateOrderPOSTcreate_order1
spotPrivatePostBatchCreateOrderPOSTbatch_create_order1
spotPrivatePostCancelOrderPOSTcancel_order1
spotPrivatePostCancelClientOrdersPOSTcancel_clientOrders1
spotPrivatePostOrdersInfoPOSTorders_info2.5
spotPrivatePostOrdersInfoHistoryPOSTorders_info_history2.5
spotPrivatePostOrderTransactionDetailPOSTorder_transaction_detail2.5
spotPrivatePostTransactionHistoryPOSTtransaction_history2.5
spotPrivatePostOrdersInfoNoDealPOSTorders_info_no_deal2.5
spotPrivatePostWithdrawPOSTwithdraw2.5
spotPrivatePostWithdrawCancelPOSTwithdrawCancel2.5
spotPrivatePostWithdrawsPOSTwithdraws2.5
spotPrivatePostSupplementUserInfoPOSTsupplement/user_info2.5
spotPrivatePostSupplementWithdrawPOSTsupplement/withdraw2.5
spotPrivatePostSupplementDepositHistoryPOSTsupplement/deposit_history2.5
spotPrivatePostSupplementWithdrawsPOSTsupplement/withdraws2.5
spotPrivatePostSupplementGetDepositAddressPOSTsupplement/get_deposit_address2.5
spotPrivatePostSupplementAssetDetailPOSTsupplement/asset_detail2.5
spotPrivatePostSupplementCustomerTradeFeePOSTsupplement/customer_trade_fee2.5
spotPrivatePostSupplementApiRestrictionsPOSTsupplement/api_Restrictions2.5
spotPrivatePostSupplementSystemPingPOSTsupplement/system_ping2.5
spotPrivatePostSupplementCreateOrderTestPOSTsupplement/create_order_test1
spotPrivatePostSupplementCreateOrderPOSTsupplement/create_order1
spotPrivatePostSupplementCancelOrderPOSTsupplement/cancel_order1
spotPrivatePostSupplementCancelOrderBySymbolPOSTsupplement/cancel_order_by_symbol1
spotPrivatePostSupplementOrdersInfoPOSTsupplement/orders_info2.5
spotPrivatePostSupplementOrdersInfoNoDealPOSTsupplement/orders_info_no_deal2.5
spotPrivatePostSupplementOrdersInfoHistoryPOSTsupplement/orders_info_history2.5
spotPrivatePostSupplementUserInfoAccountPOSTsupplement/user_info_account2.5
spotPrivatePostSupplementTransactionHistoryPOSTsupplement/transaction_history2.5

contract

Base URL: https://lbkperp.lbank.com

MethodHTTPEndpointCost
contractPublicGetCfdOpenApiV1PubGetTimeGETcfd/openApi/v1/pub/getTime2.5
contractPublicGetCfdOpenApiV1PubInstrumentGETcfd/openApi/v1/pub/instrument2.5
contractPublicGetCfdOpenApiV1PubMarketDataGETcfd/openApi/v1/pub/marketData2.5
contractPublicGetCfdOpenApiV1PubMarketOrderGETcfd/openApi/v1/pub/marketOrder2.5

On this page