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
| Parameter | Required | Type | Comments |
|---|---|---|---|
| quoteId | true | string | The quote ID from Request a Quote |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| quoteId | string | Quote ID |
| exchangeTxId | string | Exchange ID, the same value as quoteId |
| submitTime | string | Submit ts |
| status | string | init, processing, success, failure, partial_fulfillment |
| msg | string | By default is "" |
Request Example
- HTTP
- Python
- Node.js
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
}