Skip to main content

Submit Quote

Submit a payout ratio quote for an Event Contract symbol.

info
  • Only Event Contract maker accounts are allowed to access this endpoint.

HTTP Request

POST/v5/event/quotes

Request Parameters

ParameterRequiredTypeComments
symboltruestringSymbol name, e.g. ETHUSDT-28AUG26-2450-2570-OUT
orderLinkIdtruestringUser-defined order ID
grossPayoutRatiotruestringGross payout ratio reported by the institution
amounttruestringAmount for this quote (settle coin)

Response Parameters

ParameterTypeComments
orderLinkIdstringUser-defined order ID
orderIdstringOrder ID

Request Example

POST /v5/event/quotes HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1694402559000
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

{
"orderLinkId": "xxxx",
"symbol": "ETHUSDT-28AUG26-2450-2570-OUT",
"grossPayoutRatio": "0.5",
"amount": "100"
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"orderLinkId": "xxxxxx",
"orderId": "xxxxxxxxxxefffff"
},
"retExtInfo": {},
"time": 1672217377164
}