CCXT
coinbaseinternational

coinbaseinternational implicit API

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

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

const coinbaseinternational = new ccxt.coinbaseinternational ();
const response = await coinbaseinternational.v1PublicGetAssets (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 coinbaseinternational API documentation: docs.cloud.coinbase.com

35 implicit endpoints across 1 access group.

v1

MethodHTTPEndpointCost
v1PublicGetAssetsGETassets1
v1PublicGetAssetsAssetsGETassets/{assets}1
v1PublicGetAssetsAssetNetworksGETassets/{asset}/networks1
v1PublicGetInstrumentsGETinstruments1
v1PublicGetInstrumentsInstrumentGETinstruments/{instrument}1
v1PublicGetInstrumentsInstrumentQuoteGETinstruments/{instrument}/quote1
v1PublicGetInstrumentsInstrumentFundingGETinstruments/{instrument}/funding1
v1PublicGetInstrumentsInstrumentCandlesGETinstruments/{instrument}/candles1
v1PrivateGetOrdersGETorders1
v1PrivateGetOrdersIdGETorders/{id}1
v1PrivateGetPortfoliosGETportfolios1
v1PrivateGetPortfoliosPortfolioGETportfolios/{portfolio}1
v1PrivateGetPortfoliosPortfolioDetailGETportfolios/{portfolio}/detail1
v1PrivateGetPortfoliosPortfolioSummaryGETportfolios/{portfolio}/summary1
v1PrivateGetPortfoliosPortfolioBalancesGETportfolios/{portfolio}/balances1
v1PrivateGetPortfoliosPortfolioBalancesAssetGETportfolios/{portfolio}/balances/{asset}1
v1PrivateGetPortfoliosPortfolioPositionsGETportfolios/{portfolio}/positions1
v1PrivateGetPortfoliosPortfolioPositionsInstrumentGETportfolios/{portfolio}/positions/{instrument}1
v1PrivateGetPortfoliosFillsGETportfolios/fills1
v1PrivateGetPortfoliosPortfolioFillsGETportfolios/{portfolio}/fills1
v1PrivateGetTransfersGETtransfers1
v1PrivateGetTransfersTransferUuidGETtransfers/{transfer_uuid}1
v1PrivatePostOrdersPOSTorders1
v1PrivatePostPortfoliosPOSTportfolios1
v1PrivatePostPortfoliosMarginPOSTportfolios/margin1
v1PrivatePostPortfoliosTransferPOSTportfolios/transfer1
v1PrivatePostTransfersWithdrawPOSTtransfers/withdraw1
v1PrivatePostTransfersAddressPOSTtransfers/address1
v1PrivatePostTransfersCreateCounterpartyIdPOSTtransfers/create-counterparty-id1
v1PrivatePostTransfersValidateCounterpartyIdPOSTtransfers/validate-counterparty-id1
v1PrivatePostTransfersWithdrawCounterpartyPOSTtransfers/withdraw/counterparty1
v1PrivatePutOrdersIdPUTorders/{id}1
v1PrivatePutPortfoliosPortfolioPUTportfolios/{portfolio}1
v1PrivateDeleteOrdersDELETEorders1
v1PrivateDeleteOrdersIdDELETEorders/{id}1

On this page