Back to Ccxt

Coinspot

wiki/exchanges-implicit/coinspot.md

4.5.736.7 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#, Go and Java. 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
publicGetLatestGETlatest1

private

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

MethodHTTPEndpointCost
privatePostOrdersPOSTorders1
privatePostOrdersHistoryPOSTorders/history1
privatePostMyCoinDepositPOSTmy/coin/deposit1
privatePostMyCoinSendPOSTmy/coin/send1
privatePostQuoteBuyPOSTquote/buy1
privatePostQuoteSellPOSTquote/sell1
privatePostMyBalancesPOSTmy/balances1
privatePostMyOrdersPOSTmy/orders1
privatePostMyBuyPOSTmy/buy1
privatePostMySellPOSTmy/sell1
privatePostMyBuyCancelPOSTmy/buy/cancel1
privatePostMySellCancelPOSTmy/sell/cancel1
privatePostRoMyBalancesPOSTro/my/balances1
privatePostRoMyBalancesCointypePOSTro/my/balances/{cointype}1
privatePostRoMyDepositsPOSTro/my/deposits1
privatePostRoMyWithdrawalsPOSTro/my/withdrawals1
privatePostRoMyTransactionsPOSTro/my/transactions1
privatePostRoMyTransactionsCointypePOSTro/my/transactions/{cointype}1
privatePostRoMyTransactionsOpenPOSTro/my/transactions/open1
privatePostRoMyTransactionsCointypeOpenPOSTro/my/transactions/{cointype}/open1
privatePostRoMySendreceivePOSTro/my/sendreceive1
privatePostRoMyAffiliatepaymentsPOSTro/my/affiliatepayments1
privatePostRoMyReferralpaymentsPOSTro/my/referralpayments1

v2

MethodHTTPEndpointCost
v2PublicGetLatestGETlatest1
v2PublicGetLatestCointypeGETlatest/{cointype}1
v2PublicGetLatestCointypeMarkettypeGETlatest/{cointype}/{markettype}1
v2PublicGetBuypriceCointypeGETbuyprice/{cointype}1
v2PublicGetBuypriceCointypeMarkettypeGETbuyprice/{cointype}/{markettype}1
v2PublicGetSellpriceCointypeGETsellprice/{cointype}1
v2PublicGetSellpriceCointypeMarkettypeGETsellprice/{cointype}/{markettype}1
v2PublicGetOrdersOpenCointypeGETorders/open/{cointype}1
v2PublicGetOrdersOpenCointypeMarkettypeGETorders/open/{cointype}/{markettype}1
v2PublicGetOrdersCompletedCointypeGETorders/completed/{cointype}1
v2PublicGetOrdersCompletedCointypeMarkettypeGETorders/completed/{cointype}/{markettype}1
v2PublicGetOrdersSummaryCompletedCointypeGETorders/summary/completed/{cointype}1
v2PublicGetOrdersSummaryCompletedCointypeMarkettypeGETorders/summary/completed/{cointype}/{markettype}1
v2PrivatePostStatusPOSTstatus1
v2PrivatePostMyCoinDepositPOSTmy/coin/deposit1
v2PrivatePostQuoteBuyNowPOSTquote/buy/now1
v2PrivatePostQuoteSellNowPOSTquote/sell/now1
v2PrivatePostQuoteSwapNowPOSTquote/swap/now1
v2PrivatePostMyBuyPOSTmy/buy1
v2PrivatePostMyBuyEditPOSTmy/buy/edit1
v2PrivatePostMySellPOSTmy/sell1
v2PrivatePostMySellEditPOSTmy/sell/edit1
v2PrivatePostMyBuyNowPOSTmy/buy/now1
v2PrivatePostMySellNowPOSTmy/sell/now1
v2PrivatePostMySwapNowPOSTmy/swap/now1
v2PrivatePostMyBuyCancelPOSTmy/buy/cancel1
v2PrivatePostMyBuyCancelAllPOSTmy/buy/cancel/all1
v2PrivatePostMySellCancelPOSTmy/sell/cancel1
v2PrivatePostMySellCancelAllPOSTmy/sell/cancel/all1
v2PrivatePostMyCoinWithdrawSenddetailsPOSTmy/coin/withdraw/senddetails1
v2PrivatePostMyCoinWithdrawSendPOSTmy/coin/withdraw/send1
v2PrivatePostRoStatusPOSTro/status1
v2PrivatePostRoOrdersMarketOpenPOSTro/orders/market/open1
v2PrivatePostRoOrdersMarketCompletedPOSTro/orders/market/completed1
v2PrivatePostRoMyBalancesPOSTro/my/balances1
v2PrivatePostRoMyBalanceCointypePOSTro/my/balance/{cointype}1
v2PrivatePostRoMyOrdersMarketOpenPOSTro/my/orders/market/open1
v2PrivatePostRoMyOrdersLimitOpenPOSTro/my/orders/limit/open1
v2PrivatePostRoMyOrdersCompletedPOSTro/my/orders/completed1
v2PrivatePostRoMyOrdersMarketCompletedPOSTro/my/orders/market/completed1
v2PrivatePostRoMySendreceivePOSTro/my/sendreceive1
v2PrivatePostRoMyDepositsPOSTro/my/deposits1
v2PrivatePostRoMyWithdrawalsPOSTro/my/withdrawals1
v2PrivatePostRoMyAffiliatepaymentsPOSTro/my/affiliatepayments1
v2PrivatePostRoMyReferralpaymentsPOSTro/my/referralpayments1