CCXT
zebpay

zebpay implicit API

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

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

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

42 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicSpotGetV2SystemTimeGETv2/system/time10
publicSpotGetV2SystemStatusGETv2/system/status10
publicSpotGetV2MarketOrderbookGETv2/market/orderbook10
publicSpotGetV2MarketTradesGETv2/market/trades10
publicSpotGetV2MarketTickerGETv2/market/ticker10
publicSpotGetV2MarketAllTickersGETv2/market/allTickers10
publicSpotGetV2ExExchangeInfoGETv2/ex/exchangeInfo10
publicSpotGetV2ExCurrenciesGETv2/ex/currencies10
publicSpotGetV2MarketKlinesGETv2/market/klines10
publicSpotGetV2ExTradefeesGETv2/ex/tradefees10
publicSwapGetV1SystemTimeGETv1/system/time10
publicSwapGetV1SystemStatusGETv1/system/status10
publicSwapGetV1ExchangeTradefeeGETv1/exchange/tradefee10
publicSwapGetV1ExchangeTradefeesGETv1/exchange/tradefees10
publicSwapGetV1MarketOrderBookGETv1/market/orderBook10
publicSwapGetV1MarketTicker24HrGETv1/market/ticker24Hr10
publicSwapGetV1MarketMarketsGETv1/market/markets10
publicSwapGetV1MarketAggTradeGETv1/market/aggTrade10
publicSwapPostV1MarketKlinesPOSTv1/market/klines10

private

MethodHTTPEndpointCost
privateSpotPostV2ExOrdersPOSTv2/ex/orders10
privateSpotGetV2ExOrdersGETv2/ex/orders10
privateSpotGetV2AccountBalanceGETv2/account/balance10
privateSpotGetV2ExTradefeeGETv2/ex/tradefee10
privateSpotGetV2ExOrderGETv2/ex/order10
privateSpotGetV2ExOrderFillsGETv2/ex/order/fills10
privateSpotDeleteV2ExOrderDELETEv2/ex/order10
privateSpotDeleteV2ExOrdersDELETEv2/ex/orders10
privateSpotDeleteV2ExOrdersCancelAllDELETEv2/ex/orders/cancelAll10
privateSwapGetV1WalletBalanceGETv1/wallet/balance10
privateSwapGetV1TradeOrderGETv1/trade/order10
privateSwapGetV1TradeOrderOpenOrdersGETv1/trade/order/open-orders10
privateSwapGetV1TradeUserLeveragesGETv1/trade/userLeverages10
privateSwapGetV1TradeUserLeverageGETv1/trade/userLeverage10
privateSwapGetV1TradePositionsGETv1/trade/positions10
privateSwapGetV1TradeHistoryGETv1/trade/history10
privateSwapPostV1TradeOrderPOSTv1/trade/order10
privateSwapPostV1TradeOrderAddTPSLPOSTv1/trade/order/addTPSL10
privateSwapPostV1TradeAddMarginPOSTv1/trade/addMargin10
privateSwapPostV1TradeReduceMarginPOSTv1/trade/reduceMargin10
privateSwapPostV1TradePositionClosePOSTv1/trade/position/close10
privateSwapPostV1TradeUpdateUserLeveragePOSTv1/trade/update/userLeverage10
privateSwapDeleteV1TradeOrderDELETEv1/trade/order10

On this page