Get Market Maker Score Weight
Get Market Maker Score Weight
Description
Used by market makers to query the market-making score weights for each symbol
HTTP Request
- GET /api/v3/market/score-weights
- Rate limit: 5/sec/IP
Request
curl "https://api.bitget.com/api/v3/market/score-weights?category=SPOT"
Request Parameters
| Parameter | Type | Required | Comments |
|---|---|---|---|
| category | String | No | Business line type SPOTFUTURESIf not filled in, all business lines will be returned by default. |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1772524004421,
"data": [
{
"category": "SPOT",
"label": "usdt",
"symbol": "LUMIAUSDT",
"requiredSpread": "0.0005",
"minMakerVolume": "500",
"weight": "50"
}
]
}
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| category | String | Business line type SPOTFUTURES |
| label | String | Label |
| symbol | String | Symbol name e.g: ETHUSDT |
| requiredSpread | String | Required maker-order spread rate For example, 0.0005 means 0.05% |
| minMakerVolume | String | Cumulative minimum maker-order amount Positive integer, e.g. 5000, 10000 unit: USDT |
| weight | String | Weight (in decimal form) |