Back to Ccxt

Coinspot

wiki/exchanges-implicit/coinspot.md

4.5.646.6 KB
Original Source

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

<!-- tabs:start -->

JavaScript

javascript
const coinspot = new ccxt.coinspot ();
const response = await coinspot.publicGetLatest (params);

TypeScript

typescript
import ccxt from 'ccxt';
const coinspot = new ccxt.coinspot ();
const response = await coinspot.publicGetLatest (params);

Python

python
import ccxt
coinspot = ccxt.coinspot()
response = coinspot.public_get_latest(params)

PHP

php
$coinspot = new \ccxt\coinspot();
$response = $coinspot->public_get_latest($params);

C#

csharp
using ccxt;
var coinspot = new Coinspot();
var response = await coinspot.publicGetLatest(parameters);

Go

go
coinspot := ccxt.NewCoinspot(nil)
response := <-coinspot.PublicGetLatest(params)
<!-- tabs:end -->

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 coinspot API documentation: coinspot.com.au

69 implicit endpoints across 3 access groups.

public

Base URL: https://www.coinspot.com.au/pubapi

MethodHTTPEndpointCost
publicGetLatestGETlatest

private

Base URL: https://www.coinspot.com.au/api

MethodHTTPEndpointCost
privatePostOrdersPOSTorders
privatePostOrdersHistoryPOSTorders/history
privatePostMyCoinDepositPOSTmy/coin/deposit
privatePostMyCoinSendPOSTmy/coin/send
privatePostQuoteBuyPOSTquote/buy
privatePostQuoteSellPOSTquote/sell
privatePostMyBalancesPOSTmy/balances
privatePostMyOrdersPOSTmy/orders
privatePostMyBuyPOSTmy/buy
privatePostMySellPOSTmy/sell
privatePostMyBuyCancelPOSTmy/buy/cancel
privatePostMySellCancelPOSTmy/sell/cancel
privatePostRoMyBalancesPOSTro/my/balances
privatePostRoMyBalancesCointypePOSTro/my/balances/{cointype}
privatePostRoMyDepositsPOSTro/my/deposits
privatePostRoMyWithdrawalsPOSTro/my/withdrawals
privatePostRoMyTransactionsPOSTro/my/transactions
privatePostRoMyTransactionsCointypePOSTro/my/transactions/{cointype}
privatePostRoMyTransactionsOpenPOSTro/my/transactions/open
privatePostRoMyTransactionsCointypeOpenPOSTro/my/transactions/{cointype}/open
privatePostRoMySendreceivePOSTro/my/sendreceive
privatePostRoMyAffiliatepaymentsPOSTro/my/affiliatepayments
privatePostRoMyReferralpaymentsPOSTro/my/referralpayments

v2

MethodHTTPEndpointCost
v2PublicGetLatestGETlatest
v2PublicGetLatestCointypeGETlatest/{cointype}
v2PublicGetLatestCointypeMarkettypeGETlatest/{cointype}/{markettype}
v2PublicGetBuypriceCointypeGETbuyprice/{cointype}
v2PublicGetBuypriceCointypeMarkettypeGETbuyprice/{cointype}/{markettype}
v2PublicGetSellpriceCointypeGETsellprice/{cointype}
v2PublicGetSellpriceCointypeMarkettypeGETsellprice/{cointype}/{markettype}
v2PublicGetOrdersOpenCointypeGETorders/open/{cointype}
v2PublicGetOrdersOpenCointypeMarkettypeGETorders/open/{cointype}/{markettype}
v2PublicGetOrdersCompletedCointypeGETorders/completed/{cointype}
v2PublicGetOrdersCompletedCointypeMarkettypeGETorders/completed/{cointype}/{markettype}
v2PublicGetOrdersSummaryCompletedCointypeGETorders/summary/completed/{cointype}
v2PublicGetOrdersSummaryCompletedCointypeMarkettypeGETorders/summary/completed/{cointype}/{markettype}
v2PrivatePostStatusPOSTstatus
v2PrivatePostMyCoinDepositPOSTmy/coin/deposit
v2PrivatePostQuoteBuyNowPOSTquote/buy/now
v2PrivatePostQuoteSellNowPOSTquote/sell/now
v2PrivatePostQuoteSwapNowPOSTquote/swap/now
v2PrivatePostMyBuyPOSTmy/buy
v2PrivatePostMyBuyEditPOSTmy/buy/edit
v2PrivatePostMySellPOSTmy/sell
v2PrivatePostMySellEditPOSTmy/sell/edit
v2PrivatePostMyBuyNowPOSTmy/buy/now
v2PrivatePostMySellNowPOSTmy/sell/now
v2PrivatePostMySwapNowPOSTmy/swap/now
v2PrivatePostMyBuyCancelPOSTmy/buy/cancel
v2PrivatePostMyBuyCancelAllPOSTmy/buy/cancel/all
v2PrivatePostMySellCancelPOSTmy/sell/cancel
v2PrivatePostMySellCancelAllPOSTmy/sell/cancel/all
v2PrivatePostMyCoinWithdrawSenddetailsPOSTmy/coin/withdraw/senddetails
v2PrivatePostMyCoinWithdrawSendPOSTmy/coin/withdraw/send
v2PrivatePostRoStatusPOSTro/status
v2PrivatePostRoOrdersMarketOpenPOSTro/orders/market/open
v2PrivatePostRoOrdersMarketCompletedPOSTro/orders/market/completed
v2PrivatePostRoMyBalancesPOSTro/my/balances
v2PrivatePostRoMyBalanceCointypePOSTro/my/balance/{cointype}
v2PrivatePostRoMyOrdersMarketOpenPOSTro/my/orders/market/open
v2PrivatePostRoMyOrdersLimitOpenPOSTro/my/orders/limit/open
v2PrivatePostRoMyOrdersCompletedPOSTro/my/orders/completed
v2PrivatePostRoMyOrdersMarketCompletedPOSTro/my/orders/market/completed
v2PrivatePostRoMySendreceivePOSTro/my/sendreceive
v2PrivatePostRoMyDepositsPOSTro/my/deposits
v2PrivatePostRoMyWithdrawalsPOSTro/my/withdrawals
v2PrivatePostRoMyAffiliatepaymentsPOSTro/my/affiliatepayments
v2PrivatePostRoMyReferralpaymentsPOSTro/my/referralpayments