CCXT

blockchaincom

blockchaincom cryptocurrency exchange — CCXT unified API: methods, parameters and endpoints.

blockchaincom

Kind: global class
Extends: Exchange

fetchMarkets

retrieves data on all markets for blockchaincom

Kind: instance method of blockchaincom
Returns: Array<object> - an array of objects representing market data

See: https://api.blockchain.com/v3/#getsymbols

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchMarkets (params?)

fetchOrderBook

fetches information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of blockchaincom
Returns: object - A dictionary of order book structures indexed by market symbols

See: https://api.blockchain.com/v3/#getl3orderbook

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the order book for
limitintNothe maximum amount of order book entries to return
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchOrderBook (symbol, limit?, params?)

fetchL3OrderBook

fetches level 3 information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of blockchaincom
Returns: object - an order book structure

See: https://api.blockchain.com/v3/#getl3orderbook

ParamTypeRequiredDescription
symbolstringYesunified market symbol
limitintNomax number of orders to return, default is undefined
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchL3OrderBook (symbol, limit?, params?)

fetchTicker

fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market

Kind: instance method of blockchaincom
Returns: object - a ticker structure

See: https://api.blockchain.com/v3/#gettickerbysymbol

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchTicker (symbol, params?)

fetchTickers

fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market

Kind: instance method of blockchaincom
Returns: object - a dictionary of ticker structures

See: https://api.blockchain.com/v3/#gettickers

ParamTypeRequiredDescription
symbolsArray<string>, undefinedYesunified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchTickers (symbols, params?)

createOrder

create a trade order

Kind: instance method of blockchaincom
Returns: object - an order structure

See: https://api.blockchain.com/v3/#createorder

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to create an order in
typestringYes'market' or 'limit'
sidestringYes'buy' or 'sell'
amountfloatYeshow much of currency you want to trade in units of base currency
pricefloatNothe price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.createOrder (symbol, type, side, amount, price?, params?)

cancelOrder

cancels an open order

Kind: instance method of blockchaincom
Returns: object - An order structure

See: https://api.blockchain.com/v3/#deleteorder

ParamTypeRequiredDescription
idstringYesorder id
symbolstringYesunified symbol of the market the order was made in
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.cancelOrder (id, symbol, params?)

cancelAllOrders

cancel all open orders

Kind: instance method of blockchaincom
Returns: object - an list of order structures

See: https://api.blockchain.com/v3/#deleteallorders

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market to cancel orders in, all markets are used if undefined, default is undefined
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.cancelAllOrders (symbol, params?)

fetchTradingFees

fetch the trading fees for multiple markets

Kind: instance method of blockchaincom
Returns: object - a dictionary of fee structures indexed by market symbols

See: https://api.blockchain.com/v3/#getfees

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchTradingFees (params?)

fetchCanceledOrders

fetches information on multiple canceled orders made by the user

Kind: instance method of blockchaincom
Returns: object - a list of order structures

See: https://api.blockchain.com/v3/#getorders

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNotimestamp in ms of the earliest order, default is undefined
limitintNomax number of orders to return, default is undefined
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchCanceledOrders (symbol, since?, limit?, params?)

fetchClosedOrders

fetches information on multiple closed orders made by the user

Kind: instance method of blockchaincom
Returns: Array<Order> - a list of order structures

See: https://api.blockchain.com/v3/#getorders

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchClosedOrders (symbol, since?, limit?, params?)

fetchOpenOrders

fetch all unfilled currently open orders

Kind: instance method of blockchaincom
Returns: Array<Order> - a list of order structures

See: https://api.blockchain.com/v3/#getorders

ParamTypeRequiredDescription
symbolstringYesunified market symbol
sinceintNothe earliest time in ms to fetch open orders for
limitintNothe maximum number of open orders structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchOpenOrders (symbol, since?, limit?, params?)

fetchMyTrades

fetch all trades made by the user

Kind: instance method of blockchaincom
Returns: Array<Trade> - a list of trade structures

See: https://api.blockchain.com/v3/#getfills

ParamTypeRequiredDescription
symbolstringYesunified market symbol
sinceintNothe earliest time in ms to fetch trades for
limitintNothe maximum number of trades structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchMyTrades (symbol, since?, limit?, params?)

fetchDepositAddress

fetch the deposit address for a currency associated with this account

Kind: instance method of blockchaincom
Returns: object - an address structure

See: https://api.blockchain.com/v3/#getdepositaddress

ParamTypeRequiredDescription
codestringYesunified currency code
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchDepositAddress (code, params?)

withdraw

make a withdrawal

Kind: instance method of blockchaincom
Returns: object - a transaction structure

See: https://api.blockchain.com/v3/#createwithdrawal

ParamTypeRequiredDescription
codestringYesunified currency code
amountfloatYesthe amount to withdraw
addressstringYesthe address to withdraw to
tagstringYes
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.withdraw (code, amount, address, tag, params?)

fetchWithdrawals

fetch all withdrawals made from an account

Kind: instance method of blockchaincom
Returns: Array<object> - a list of transaction structures

See: https://api.blockchain.com/v3/#getwithdrawals

ParamTypeRequiredDescription
codestringYesunified currency code
sinceintNothe earliest time in ms to fetch withdrawals for
limitintNothe maximum number of withdrawals structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchWithdrawals (code, since?, limit?, params?)

fetchWithdrawal

fetch data on a currency withdrawal via the withdrawal id

Kind: instance method of blockchaincom
Returns: object - a transaction structure

See: https://api.blockchain.com/v3/#getwithdrawalbyid

ParamTypeRequiredDescription
idstringYeswithdrawal id
codestringYesnot used by blockchaincom.fetchWithdrawal
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchWithdrawal (id, code, params?)

fetchDeposits

fetch all deposits made to an account

Kind: instance method of blockchaincom
Returns: Array<object> - a list of transaction structures

See: https://api.blockchain.com/v3/#getdeposits

ParamTypeRequiredDescription
codestringYesunified currency code
sinceintNothe earliest time in ms to fetch deposits for
limitintNothe maximum number of deposits structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchDeposits (code, since?, limit?, params?)

fetchDeposit

fetch information on a deposit

Kind: instance method of blockchaincom
Returns: object - a transaction structure

See: https://api.blockchain.com/v3/#getdepositbyid

ParamTypeRequiredDescription
idstringYesdeposit id
codestringYesnot used by blockchaincom fetchDeposit ()
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchDeposit (id, code, params?)

fetchBalance

query for balance and get the amount of funds available for trading or funds locked in orders

Kind: instance method of blockchaincom
Returns: object - a balance structure

See: https://api.blockchain.com/v3/#getaccounts

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchBalance (params?)

fetchOrder

fetches information on an order made by the user

Kind: instance method of blockchaincom
Returns: object - An order structure

See: https://api.blockchain.com/v3/#getorderbyid

ParamTypeRequiredDescription
idstringYesthe order id
symbolstringYesnot used by blockchaincom fetchOrder
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchOrder (id, symbol, params?)

watchBalance

watch balance and get the amount of funds available for trading or funds locked in orders

Kind: instance method of blockchaincom
Returns: object - a balance structure

See: https://exchange.blockchain.com/api/#balances

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.watchBalance (params?)

watchOHLCV

watches historical candlestick data containing the open, high, low, and close price, and the volume of a market.

Kind: instance method of blockchaincom
Returns: Array<Array<int>> - A list of candles ordered as timestamp, open, high, low, close, volume

See: https://exchange.blockchain.com/api/#prices

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch OHLCV data for
timeframestringYesthe length of time each candle represents. Allows '1m', '5m', '15m', '1h', '6h' '1d'. Can only watch one timeframe per symbol.
sinceintNotimestamp in ms of the earliest candle to fetch
limitintNothe maximum amount of candles to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.watchOHLCV (symbol, timeframe, since?, limit?, params?)

watchTicker

watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market

Kind: instance method of blockchaincom
Returns: object - a ticker structure

See: https://exchange.blockchain.com/api/#ticker

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.watchTicker (symbol, params?)

watchTrades

get the list of most recent trades for a particular symbol

Kind: instance method of blockchaincom
Returns: Array<object> - a list of trade structures

See: https://exchange.blockchain.com/api/#trades

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch trades for
sinceintNotimestamp in ms of the earliest trade to fetch
limitintNothe maximum amount of trades to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.watchTrades (symbol, since?, limit?, params?)

fetchOrders

watches information on multiple orders made by the user

Kind: instance method of blockchaincom
Returns: Array<object> - a list of order structures

See: https://exchange.blockchain.com/api/#mass-order-status-request-ordermassstatusrequest

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
blockchaincom.fetchOrders (symbol, since?, limit?, params?)

watchOrderBook

watches information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of blockchaincom
Returns: object - A dictionary of order book structures indexed by market symbols

See: https://exchange.blockchain.com/api/#l2-order-book

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the order book for
limitintNothe maximum amount of order book entries to return
paramsobjectConstructorNoextra parameters specific to the exchange API endpoint
params.typestringNoaccepts l2 or l3 for level 2 or level 3 order book
blockchaincom.watchOrderBook (symbol, limit?, params?)

On this page