CCXT
pacifica

pacifica implicit API

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

Every endpoint in pacifica'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#, Go and Java. Call them by the camelCase name shown in the tables below (e.g. publicGetInfo); the snake_case alias (public_get_info) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetInfo). Switch tabs for the call in each language:

const pacifica = new ccxt.pacifica ();
const response = await pacifica.publicGetInfo (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 pacifica API documentation: docs.pacifica.fi

67 implicit endpoints across 2 access groups.

public

Base URL: https://api.{hostname}

MethodHTTPEndpointCost
publicGetInfoGETinfo1
publicGetInfoFeesGETinfo/fees1
publicGetInfoPricesGETinfo/prices1
publicGetKlineGETkline12
publicGetKlineMarkGETkline/mark12
publicGetBookGETbook1
publicGetTradesGETtrades1
publicGetFundingRateHistoryGETfunding_rate/history1
publicGetLoanPoolGETloan_pool1
publicGetAccountGETaccount1
publicGetAccountLoanGETaccount/loan1
publicGetAccountSettingsGETaccount/settings1
publicGetPositionsGETpositions1
publicGetTradesHistoryGETtrades/history12
publicGetFundingHistoryGETfunding/history1
publicGetPortfolioGETportfolio1
publicGetAccountBalanceHistoryGETaccount/balance/history12
publicGetAccountSpotBalanceHistoryGETaccount/spot_balance/history1
publicGetAccountSpotAssetDepositHistoryGETaccount/spot_asset/deposit/history1
publicGetAccountSpotAssetWithdrawHistoryGETaccount/spot_asset/withdraw/history1
publicGetAccountSpotAssetWithdrawPendingGETaccount/spot_asset/withdraw/pending1
publicGetOrdersGETorders1
publicGetOrdersHistoryGETorders/history12
publicGetOrdersHistoryByIdGETorders/history_by_id1
publicGetSpotAssetsGETspot_assets1
publicGetSpotAssetsBridgeInfoGETspot_assets/bridge/info1
publicGetSpotAssetsBridgeParametersSymbolGETspot_assets/bridge/parameters/{symbol}1
publicGetLakeListGETlake/list1
publicGetAccountBuilderCodesApprovalsGETaccount/builder_codes/approvals1

private

Base URL: https://api.{hostname}

MethodHTTPEndpointCost
privatePostAccountLeveragePOSTaccount/leverage1
privatePostAccountMarginPOSTaccount/margin1
privatePostAccountWithdrawPOSTaccount/withdraw1
privatePostAccountSettingsAutoLendDisabledPOSTaccount/settings/auto_lend_disabled1
privatePostAccountSettingsSpotPOSTaccount/settings/spot1
privatePostAccountSpotAssetWithdrawPOSTaccount/spot_asset/withdraw1
privatePostAccountSubaccountCreatePOSTaccount/subaccount/create1
privatePostAccountSubaccountListPOSTaccount/subaccount/list1
privatePostAccountSubaccountTransferPOSTaccount/subaccount/transfer1
privatePostAccountSubaccountSpotAssetTransferPOSTaccount/subaccount/spot_asset/transfer1
privatePostPositionsAddIsolatedMarginPOSTpositions/add_isolated_margin1
privatePostOrdersCreatePOSTorders/create1
privatePostOrdersCreateMarketPOSTorders/create_market1
privatePostOrdersStopCreatePOSTorders/stop/create1
privatePostPositionsTpslPOSTpositions/tpsl1
privatePostOrdersCancelPOSTorders/cancel0.5
privatePostOrdersCancelAllPOSTorders/cancel_all0.5
privatePostOrdersStopCancelPOSTorders/stop/cancel0.5
privatePostOrdersEditPOSTorders/edit1
privatePostOrdersBatchPOSTorders/batch1
privatePostAccountBuilderCodesApprovePOSTaccount/builder_codes/approve1
privatePostAccountBuilderCodesRevokePOSTaccount/builder_codes/revoke1
privatePostAgentBindPOSTagent/bind1
privatePostAccountApiKeysCreatePOSTaccount/api_keys/create1
privatePostAccountApiKeysRevokePOSTaccount/api_keys/revoke1
privatePostAccountApiKeysPOSTaccount/api_keys1
privatePostLakeAddBlacklistPOSTlake/add_blacklist1
privatePostLakeAddMaxLeveragePOSTlake/add_max_leverage1
privatePostLakeAddWhitelistPOSTlake/add_whitelist1
privatePostLakeClaimManagerPOSTlake/claim_manager1
privatePostLakeClaimReferralCodePOSTlake/claim_referral_code1
privatePostLakeCreatePOSTlake/create1
privatePostLakeDepositPOSTlake/deposit1
privatePostLakeRemoveBlacklistPOSTlake/remove_blacklist1
privatePostLakeRemoveMaxLeveragePOSTlake/remove_max_leverage1
privatePostLakeRemoveWhitelistPOSTlake/remove_whitelist1
privatePostLakeUpdateDepositCapPOSTlake/update_deposit_cap1
privatePostLakeWithdrawPOSTlake/withdraw1

On this page