Get RFQ Configuration
RFQ Config. Up to 50 requests per second.
info
Query for information on the quoting party that can participate in your transaction, your own deskCode and other configuration information.
HTTP Request
GET /v5/rfq/config
Request Parameters
None
Response Parameters
Parameter | Type | Comments |
---|---|---|
result | array | Order ID |
list | Object | |
> deskCode | string | Your deskCode, a unique identification code |
> maxLegs | integer | Maximum number of legs |
> maxLP | integer | The maximum number of LPs (liquidity providers) selected in the inquiry |
> maxActiveRfq | integer | The maximum number of unfinished inquiry orders allowed by a user |
> rfqExpireTime | integer | Inquiry expiration time (mins) |
> minLimitQtySpotOrder | integer | Spot minimum order quantity |
>minLimitQtyContractOrder | integer | Contract minimum order quantity |
> minLimitQtyOptionOrder | integer | Option minimum order |
> strategyTypes | array | Product strategy |
>> strategyName | string | Strategy name |
> counterparties | array | Information on the quoters who can participate in the transaction |
>> traderName | string | Name of the quoter |
>> deskCode | string | The unique identification code of the quoting party |
>> type | string | Quoter type. LP is an automated market maker connected via API, null means a normal quoting party |
Request Example
GET /v5/rfq/create-rfq HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1676430842094
X-BAPI-RECV-WINDOW: 5000
X-BAPI-SIGN: XXXXXX
Response Example
{
"retCode": 0,
"retMsg": "OK",
"result": {
"deskCode": "1nu9d1",
"maxLegs": 25,
"maxLP": 50,
"rfqExpireTime": 10,
"maxActiveRfq": 10,
"minLimitQtySpotOrder": 10,
"minLimitQtyContractOrder": 10,
"minLimitQtyOptionOrder": 1,
"strategyTypes": [
{
"strategyName": "custom"
},
{
"strategyName": "FundingRate"
},
{
"strategyName": "CarryTrade"
},
...,
],
"counterparties": [
{
"traderName": "1zQkH0y7Y3acALM",
"deskCode": "gIMhjitYqE9WG5F",
"type": "LP"
},
{
"traderName": "Bernie LP",
"deskCode": "Bernie",
"type": "LP"
},
...,
]
},
"retExtInfo": {},
"time": 1756870672013
}