Get Margin Available Currencies

Returns a list of all currencies available for margin trading with their configuration, including interest rates applied to borrowed amounts and discount factors used for collateral valuation.

Endpoint URL

GET https://api.bitso.com/margin_trading/v1alpha/currencies


Request

This endpoint requires no request parameters.


Response

Fields

FieldTypeDescription
currenciesarrayList of available currencies for margin trading

Currency Object

FieldTypeDescription
currency_codestringCurrency code
interest_ratestringHourly interest rate applied to borrowed amounts. This rate is charged when you borrow this currency for margin trading
discount_factorstringDiscount factor used for collateral valuation. This factor is applied when using this currency as collateral

Payload Example

{
  "currencies": [
    {
      "currency_code": "btc",
      "interest_rate": "0.0001",
      "discount_factor": "0.9"
    },
    {
      "currency_code": "eth",
      "interest_rate": "0.00012",
      "discount_factor": "0.85"
    },
    {
      "currency_code": "usd",
      "interest_rate": "0.00008",
      "discount_factor": "1.0"
    }
  ]
}