REST APITradeProducts

GET

Gets a list of all available products.

Requires access token scope: trade_view

Path Params

  • accountId string required
    The ID of the account

Responses

200
An array of products

Response Body

object

  • data array of objects required
    data object
    • id string uuid required
      ID of the product
    • name string required
      Product name
    • baseCurrencyId string uuid required
      ID of the base currency
    • baseCurrency string required
      Base currency (the first asset in the trade pair) name
    • quoteCurrencyId string uuid required
      ID of the quote currency
    • quoteCurrency string required
      Quote currency (the second asset in the trade pair) name
    • baseMinSize string decimal required
      Minimum order size in base currency
    • baseMaxSize string decimal required
      Maximum order size in base currency
    • baseIncrement string decimal required
      Maximum precision allowed when entering order quantities in base currency
    • quoteMinSize string decimal required
      Minimum order size in quote currency
    • quoteMaxSize string decimal required
      Maximum order size in quote currency
    • quoteIncrement string decimal required
      Maximum precision allowed when entering order quantities in the quote currency
    • quoteDisplayPrecision integer required
      Maximum number of decimal places used when displaying quote currency amounts and limit prices
    • isTradeDisabled boolean required
      True, if trading is disabled for the product
    • isMarginTradeSupported boolean required
      True, if margin trading is supported for the product
default
unexpected error

Response Body

object

  • error string required
  • errorName string required
  • reqId string required
  • context object
    Optional structured metadata for REST validation failures. The schema is fixed for client contract stability.
    context object
    • errorName string required
      Same value as the top-level errorName.
    • field string
      Request field associated with the validation failure.
    • message string
      Human-readable field-level validation message.