Skip to main content

Confirm a Quote

info
  • api key permission: Convert
  • api rate limit: 5 req /s
  • The exchange is async; please check the final status by calling the query Get Exchange History.
  • Make sure you confirm the quote before it expires.

HTTP Request

POST /v5/asset/covert/small-balance-execute

Request Parameters

ParameterRequiredTypeComments
quoteIdtruestringThe quote ID from Request a Quote

Response Parameters

ParameterTypeComments
quoteIdstringQuote ID
exchangeTxIdstringExchange ID, the same value as quoteId
submitTimestringSubmit ts
statusstringinit, processing, success, failure, partial_fulfillment
msgstringBy default is ""

Request Example

POST /v5/asset/covert/small-balance-execute HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1766128195297
X-BAPI-RECV-WINDOW: 5000
X-BAPI-SIGN: XXXXXX
Content-Type: application/json
Content-Length: 49

{
"quoteId": "1010075157602517596339322880"
}

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"quoteId": "1010075157602517596339322880",
"exchangeTxId": "1010075157602517596339322880",
"submitTime": "1766128195512",
"status": "processing",
"msg": ""
},
"retExtInfo": {},
"time": 1766128195512
}