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# and Go. 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
v1PublicGetAssetsGETassets
v1PublicGetAssetsAssetsGETassets/{assets}
v1PublicGetAssetsAssetNetworksGETassets/{asset}/networks
v1PublicGetInstrumentsGETinstruments
v1PublicGetInstrumentsInstrumentGETinstruments/{instrument}
v1PublicGetInstrumentsInstrumentQuoteGETinstruments/{instrument}/quote
v1PublicGetInstrumentsInstrumentFundingGETinstruments/{instrument}/funding
v1PublicGetInstrumentsInstrumentCandlesGETinstruments/{instrument}/candles
v1PrivateGetOrdersGETorders
v1PrivateGetOrdersIdGETorders/{id}
v1PrivateGetPortfoliosGETportfolios
v1PrivateGetPortfoliosPortfolioGETportfolios/{portfolio}
v1PrivateGetPortfoliosPortfolioDetailGETportfolios/{portfolio}/detail
v1PrivateGetPortfoliosPortfolioSummaryGETportfolios/{portfolio}/summary
v1PrivateGetPortfoliosPortfolioBalancesGETportfolios/{portfolio}/balances
v1PrivateGetPortfoliosPortfolioBalancesAssetGETportfolios/{portfolio}/balances/{asset}
v1PrivateGetPortfoliosPortfolioPositionsGETportfolios/{portfolio}/positions
v1PrivateGetPortfoliosPortfolioPositionsInstrumentGETportfolios/{portfolio}/positions/{instrument}
v1PrivateGetPortfoliosFillsGETportfolios/fills
v1PrivateGetPortfoliosPortfolioFillsGETportfolios/{portfolio}/fills
v1PrivateGetTransfersGETtransfers
v1PrivateGetTransfersTransferUuidGETtransfers/{transfer_uuid}
v1PrivatePostOrdersPOSTorders
v1PrivatePostPortfoliosPOSTportfolios
v1PrivatePostPortfoliosMarginPOSTportfolios/margin
v1PrivatePostPortfoliosTransferPOSTportfolios/transfer
v1PrivatePostTransfersWithdrawPOSTtransfers/withdraw
v1PrivatePostTransfersAddressPOSTtransfers/address
v1PrivatePostTransfersCreateCounterpartyIdPOSTtransfers/create-counterparty-id
v1PrivatePostTransfersValidateCounterpartyIdPOSTtransfers/validate-counterparty-id
v1PrivatePostTransfersWithdrawCounterpartyPOSTtransfers/withdraw/counterparty
v1PrivatePutOrdersIdPUTorders/{id}
v1PrivatePutPortfoliosPortfolioPUTportfolios/{portfolio}
v1PrivateDeleteOrdersDELETEorders
v1PrivateDeleteOrdersIdDELETEorders/{id}

On this page