Skip to main content

Get Convert List

Query the currently supported Convert symbols and live rate snapshots. Used for quote display and front-end snapshot validation before submitting a Convert request.

info

This endpoint is only available for Market Maker.

HTTP Request

GET/v5/rwa/stocks/convert/list

Request Parameters

ParameterRequiredTypeComments
symbolfalsestringFilter by symbol, e.g. AAPL-US. Returns all supported symbols if omitted

Response Parameters

ParameterTypeComments
dataarray<object>Convert symbol list
> symbolstringUnderlying stock symbol, e.g. AAPL-US
> tokenSymbolstringCorresponding mStocks Token, e.g. AAPLM
> multiplierstringCurrently effective conversion ratio (1 share of underlying → N Tokens)
> mintEnabledbooleanWhether MINT (underlying → Token) is allowed
> redeemEnabledbooleanWhether REDEEM (Token → underlying) is allowed
> minInputAmountstringMinimum input amount per submission

Request Example

GET /v5/rwa/stocks/convert/list HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1787657753833
X-BAPI-RECV-WINDOW: 5000
X-BAPI-SIGN: XXXXX

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"data": [
{
"symbol": "AAPL-US",
"tokenSymbol": "AAPLM",
"multiplier": "10",
"mintEnabled": true,
"redeemEnabled": true,
"minInputAmount": "0.1"
}
]
},
"retExtInfo": {},
"time": 1787657753833
}