Back to Ccxt

Independentreserve

wiki/exchanges-implicit/independentreserve.md

4.5.735.2 KB
Original Source

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

<!-- tabs:start -->

JavaScript

javascript
const independentreserve = new ccxt.independentreserve ();
const response = await independentreserve.publicGetGetValidPrimaryCurrencyCodes (params);

TypeScript

typescript
import ccxt from 'ccxt';
const independentreserve = new ccxt.independentreserve ();
const response = await independentreserve.publicGetGetValidPrimaryCurrencyCodes (params);

Python

python
import ccxt
independentreserve = ccxt.independentreserve()
response = independentreserve.public_get_getvalidprimarycurrencycodes(params)

PHP

php
$independentreserve = new \ccxt\independentreserve();
$response = $independentreserve->public_get_getvalidprimarycurrencycodes($params);

C#

csharp
using ccxt;
var independentreserve = new Independentreserve();
var response = await independentreserve.publicGetGetValidPrimaryCurrencyCodes(parameters);

Go

go
independentreserve := ccxt.NewIndependentreserve(nil)
response := <-independentreserve.PublicGetGetValidPrimaryCurrencyCodes(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 independentreserve API documentation: independentreserve.com

39 implicit endpoints across 2 access groups.

public

Base URL: https://api.independentreserve.com/Public

MethodHTTPEndpointCost
publicGetGetValidPrimaryCurrencyCodesGETGetValidPrimaryCurrencyCodes1
publicGetGetValidSecondaryCurrencyCodesGETGetValidSecondaryCurrencyCodes1
publicGetGetValidLimitOrderTypesGETGetValidLimitOrderTypes1
publicGetGetValidMarketOrderTypesGETGetValidMarketOrderTypes1
publicGetGetValidOrderTypesGETGetValidOrderTypes1
publicGetGetValidTransactionTypesGETGetValidTransactionTypes1
publicGetGetMarketSummaryGETGetMarketSummary1
publicGetGetOrderBookGETGetOrderBook1
publicGetGetAllOrdersGETGetAllOrders1
publicGetGetTradeHistorySummaryGETGetTradeHistorySummary1
publicGetGetRecentTradesGETGetRecentTrades1
publicGetGetFxRatesGETGetFxRates1
publicGetGetOrderMinimumVolumesGETGetOrderMinimumVolumes1
publicGetGetCryptoWithdrawalFeesGETGetCryptoWithdrawalFees1
publicGetGetCryptoWithdrawalFees2GETGetCryptoWithdrawalFees21
publicGetGetNetworksGETGetNetworks1
publicGetGetPrimaryCurrencyConfig2GETGetPrimaryCurrencyConfig21

private

Base URL: https://api.independentreserve.com/Private

MethodHTTPEndpointCost
privatePostGetOpenOrdersPOSTGetOpenOrders1
privatePostGetClosedOrdersPOSTGetClosedOrders1
privatePostGetClosedFilledOrdersPOSTGetClosedFilledOrders1
privatePostGetOrderDetailsPOSTGetOrderDetails1
privatePostGetAccountsPOSTGetAccounts1
privatePostGetTransactionsPOSTGetTransactions1
privatePostGetFiatBankAccountsPOSTGetFiatBankAccounts1
privatePostGetDigitalCurrencyDepositAddressPOSTGetDigitalCurrencyDepositAddress1
privatePostGetDigitalCurrencyDepositAddress2POSTGetDigitalCurrencyDepositAddress21
privatePostGetDigitalCurrencyDepositAddressesPOSTGetDigitalCurrencyDepositAddresses1
privatePostGetDigitalCurrencyDepositAddresses2POSTGetDigitalCurrencyDepositAddresses21
privatePostGetTradesPOSTGetTrades1
privatePostGetBrokerageFeesPOSTGetBrokerageFees1
privatePostGetDigitalCurrencyWithdrawalPOSTGetDigitalCurrencyWithdrawal1
privatePostPlaceLimitOrderPOSTPlaceLimitOrder1
privatePostPlaceMarketOrderPOSTPlaceMarketOrder1
privatePostCancelOrderPOSTCancelOrder1
privatePostSynchDigitalCurrencyDepositAddressWithBlockchainPOSTSynchDigitalCurrencyDepositAddressWithBlockchain1
privatePostRequestFiatWithdrawalPOSTRequestFiatWithdrawal1
privatePostWithdrawFiatCurrencyPOSTWithdrawFiatCurrency1
privatePostWithdrawDigitalCurrencyPOSTWithdrawDigitalCurrency1
privatePostWithdrawCryptoPOSTWithdrawCrypto1