Margin
Collateral Info
- GET
https://api.poloniex.com/markets/collateralInfo
- GET
https://api.poloniex.com/markets/{currency}/collateralInfo
/markets/collateralInfo
: Get collateral information for all currencies.
Response Field | Data Type | Description |
---|---|---|
currency | String | currency name |
collateralRate | String | collateral rate of the currency in cross margin |
initialMarginRate | String | initial margin rate of this currency |
maintenanceMarginRate | String | maintenance margin rate of this currency |
Example output:
[
{
"currency": "BTC",
"collateralRate": "0.95",
"initialMarginRate": "0.50",
"maintenanceMarginRate": "0.10"
},
{
"currency": "ETH",
"collateralRate": "0.95",
"initialMarginRate": "0.55",
"maintenanceMarginRate": "0.11"
},
...
]
/markets/{currency}/collateralInfo
: Get collateral information for a single currency.
Request Parameter | Data Type | Required | Description |
---|---|---|---|
currency | String | true | currency name |
Response fields are the same as /markets/collateralInfo
.
Example output:
{
"currency": "BTC",
"collateralRate": "0.95",
"initialMarginRate": "0.50",
"maintenanceMarginRate": "0.10"
}
Borrow Rates Info
- GET
https://api.poloniex.com/markets/borrowRatesInfo
/markets/borrowRatesInfo
: Get borrow rates information for all tiers and currencies.
Response Field | Data Type | Description |
---|---|---|
tier | String | tier for borrow rates |
rates | Array of Json | borrow rates per currency |
Response Field | Data Type | Description |
---|---|---|
currency | String | currency name |
dailyBorrowRate | String | borrow rate per day |
hourlyBorrowRate | String | borrow rate per hour |
borrowLimit | String | borrow limit amount for the currency |
Example output:
[
{
"tier": "TIER1",
"rates": [
{
"currency": "BTC",
"dailyBorrowRate": "1",
"hourlyBorrowRate": "0.04166",
"borrowLimit": "10"
},
{
"currency": "ETH",
"dailyBorrowRate": "1",
"hourlyBorrowRate": "0.04166",
"borrowLimit": "100"
}
]
},
{
"tier": "TIER2",
"rates": [
{
"currency": "BTC",
"dailyBorrowRate": "0.95",
"hourlyBorrowRate": "0.03958",
"borrowLimit": "11"
},
{
"currency": "ETH",
"dailyBorrowRate": "1",
"hourlyBorrowRate": "0.03958",
"borrowLimit": "110"
}
]
}
...
]