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# and Go. 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
publicGetGetValidPrimaryCurrencyCodesGETGetValidPrimaryCurrencyCodes
publicGetGetValidSecondaryCurrencyCodesGETGetValidSecondaryCurrencyCodes
publicGetGetValidLimitOrderTypesGETGetValidLimitOrderTypes
publicGetGetValidMarketOrderTypesGETGetValidMarketOrderTypes
publicGetGetValidOrderTypesGETGetValidOrderTypes
publicGetGetValidTransactionTypesGETGetValidTransactionTypes
publicGetGetMarketSummaryGETGetMarketSummary
publicGetGetOrderBookGETGetOrderBook
publicGetGetAllOrdersGETGetAllOrders
publicGetGetTradeHistorySummaryGETGetTradeHistorySummary
publicGetGetRecentTradesGETGetRecentTrades
publicGetGetFxRatesGETGetFxRates
publicGetGetOrderMinimumVolumesGETGetOrderMinimumVolumes
publicGetGetCryptoWithdrawalFeesGETGetCryptoWithdrawalFees
publicGetGetCryptoWithdrawalFees2GETGetCryptoWithdrawalFees2
publicGetGetNetworksGETGetNetworks
publicGetGetPrimaryCurrencyConfig2GETGetPrimaryCurrencyConfig2

private

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

MethodHTTPEndpointCost
privatePostGetOpenOrdersPOSTGetOpenOrders
privatePostGetClosedOrdersPOSTGetClosedOrders
privatePostGetClosedFilledOrdersPOSTGetClosedFilledOrders
privatePostGetOrderDetailsPOSTGetOrderDetails
privatePostGetAccountsPOSTGetAccounts
privatePostGetTransactionsPOSTGetTransactions
privatePostGetFiatBankAccountsPOSTGetFiatBankAccounts
privatePostGetDigitalCurrencyDepositAddressPOSTGetDigitalCurrencyDepositAddress
privatePostGetDigitalCurrencyDepositAddress2POSTGetDigitalCurrencyDepositAddress2
privatePostGetDigitalCurrencyDepositAddressesPOSTGetDigitalCurrencyDepositAddresses
privatePostGetDigitalCurrencyDepositAddresses2POSTGetDigitalCurrencyDepositAddresses2
privatePostGetTradesPOSTGetTrades
privatePostGetBrokerageFeesPOSTGetBrokerageFees
privatePostGetDigitalCurrencyWithdrawalPOSTGetDigitalCurrencyWithdrawal
privatePostPlaceLimitOrderPOSTPlaceLimitOrder
privatePostPlaceMarketOrderPOSTPlaceMarketOrder
privatePostCancelOrderPOSTCancelOrder
privatePostSynchDigitalCurrencyDepositAddressWithBlockchainPOSTSynchDigitalCurrencyDepositAddressWithBlockchain
privatePostRequestFiatWithdrawalPOSTRequestFiatWithdrawal
privatePostWithdrawFiatCurrencyPOSTWithdrawFiatCurrency
privatePostWithdrawDigitalCurrencyPOSTWithdrawDigitalCurrency
privatePostWithdrawCryptoPOSTWithdrawCrypto

On this page