CCXT
independentreserve

independentreserve implicit API

Every raw independentreserve endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

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:

const independentreserve = new ccxt.independentreserve ();
const response = await independentreserve.publicGetGetValidPrimaryCurrencyCodes (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 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

On this page