CCXT
backpack

backpack implicit API

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

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

const backpack = new ccxt.backpack ();
const response = await backpack.publicGetApiV1Assets (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 backpack API documentation: docs.backpack.exchange

56 implicit endpoints across 2 access groups.

public

Base URL: https://api.backpack.exchange

MethodHTTPEndpointCost
publicGetApiV1AssetsGETapi/v1/assets1
publicGetApiV1CollateralGETapi/v1/collateral1
publicGetApiV1BorrowLendMarketsGETapi/v1/borrowLend/markets1
publicGetApiV1BorrowLendMarketsHistoryGETapi/v1/borrowLend/markets/history1
publicGetApiV1MarketsGETapi/v1/markets1
publicGetApiV1MarketGETapi/v1/market1
publicGetApiV1TickerGETapi/v1/ticker1
publicGetApiV1TickersGETapi/v1/tickers1
publicGetApiV1DepthGETapi/v1/depth1
publicGetApiV1KlinesGETapi/v1/klines1
publicGetApiV1MarkPricesGETapi/v1/markPrices1
publicGetApiV1OpenInterestGETapi/v1/openInterest1
publicGetApiV1FundingRatesGETapi/v1/fundingRates1
publicGetApiV1StatusGETapi/v1/status1
publicGetApiV1PingGETapi/v1/ping1
publicGetApiV1TimeGETapi/v1/time1
publicGetApiV1WalletsGETapi/v1/wallets1
publicGetApiV1TradesGETapi/v1/trades1
publicGetApiV1TradesHistoryGETapi/v1/trades/history1

private

Base URL: https://api.backpack.exchange

MethodHTTPEndpointCost
privateGetApiV1AccountGETapi/v1/account1
privateGetApiV1AccountLimitsBorrowGETapi/v1/account/limits/borrow1
privateGetApiV1AccountLimitsOrderGETapi/v1/account/limits/order1
privateGetApiV1AccountLimitsWithdrawalGETapi/v1/account/limits/withdrawal1
privateGetApiV1BorrowLendPositionsGETapi/v1/borrowLend/positions1
privateGetApiV1CapitalGETapi/v1/capital1
privateGetApiV1CapitalCollateralGETapi/v1/capital/collateral1
privateGetWapiV1CapitalDepositsGETwapi/v1/capital/deposits1
privateGetWapiV1CapitalDepositAddressGETwapi/v1/capital/deposit/address1
privateGetWapiV1CapitalWithdrawalsGETwapi/v1/capital/withdrawals1
privateGetApiV1PositionGETapi/v1/position1
privateGetWapiV1HistoryBorrowLendGETwapi/v1/history/borrowLend1
privateGetWapiV1HistoryInterestGETwapi/v1/history/interest1
privateGetWapiV1HistoryBorrowLendPositionsGETwapi/v1/history/borrowLend/positions1
privateGetWapiV1HistoryDustGETwapi/v1/history/dust1
privateGetWapiV1HistoryFillsGETwapi/v1/history/fills1
privateGetWapiV1HistoryFundingGETwapi/v1/history/funding1
privateGetWapiV1HistoryOrdersGETwapi/v1/history/orders1
privateGetWapiV1HistoryRfqGETwapi/v1/history/rfq1
privateGetWapiV1HistoryQuoteGETwapi/v1/history/quote1
privateGetWapiV1HistorySettlementGETwapi/v1/history/settlement1
privateGetWapiV1HistoryStrategiesGETwapi/v1/history/strategies1
privateGetApiV1OrderGETapi/v1/order1
privateGetApiV1OrdersGETapi/v1/orders1
privatePostApiV1AccountConvertDustPOSTapi/v1/account/convertDust1
privatePostApiV1BorrowLendPOSTapi/v1/borrowLend1
privatePostWapiV1CapitalWithdrawalsPOSTwapi/v1/capital/withdrawals1
privatePostApiV1OrderPOSTapi/v1/order1
privatePostApiV1OrdersPOSTapi/v1/orders1
privatePostApiV1RfqPOSTapi/v1/rfq1
privatePostApiV1RfqAcceptPOSTapi/v1/rfq/accept1
privatePostApiV1RfqRefreshPOSTapi/v1/rfq/refresh1
privatePostApiV1RfqCancelPOSTapi/v1/rfq/cancel1
privatePostApiV1RfqQuotePOSTapi/v1/rfq/quote1
privateDeleteApiV1OrderDELETEapi/v1/order1
privateDeleteApiV1OrdersDELETEapi/v1/orders1
privatePatchApiV1AccountPATCHapi/v1/account1

On this page