Skip to main content

Get Maker Credit Usage

Frequency limit: 10 times/1s (UID)

Description

Get maker credit limit and usage

HTTP Request

  • GET /api/spot/v2/maker-credit/credit-usage
Request Example
curl "https://api.****.com/api/spot/v2/maker-credit/credit-usage?coinName=BTC" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

Request Parameter

ParameterTypeRequiredDescription
coinNameStringNoCoin name, e.g. BTC
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1683875302853,
"data": [
{
"userId": 10001,
"coinName": "BTC",
"orderCredit": "10.00000000",
"usedAmount": "3.50000000",
"usageRate": "0.35000000"
}
]
}

Response Parameter

ParameterTypeDescription
userIdLongMaker user ID
coinNameStringCoin name
orderCreditDecimalCredit limit
usedAmountDecimalUsed amount of open orders (absolute value)
usageRateDecimalUsage rate: |usedAmount| / orderCredit, null when orderCredit is 0