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
| Field | Type | Description |
|---|---|---|
currencies | array | List of available currencies for margin trading |
Currency Object
| Field | Type | Description |
|---|---|---|
currency_code | string | Currency code |
interest_rate | string | Hourly interest rate applied to borrowed amounts. This rate is charged when you borrow this currency for margin trading |
discount_factor | string | Discount 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"
}
]
}Updated about 20 hours ago
