Skip to main content

Get Payment Token List

Query available payment tokens for prediction market trading. Phase 1 supports USDC only.

info
  • Requires API key authentication

HTTP Request

GET/v5/alpha/prediction/pay-token-list

Request Parameters

None

Response Parameters

ParameterTypeComments
tokenCodestringPayment token code, e.g. USDC
symbolstringToken symbol
tokenDecimalsintegerToken decimal precision
tokenIconUrlDaystringToken icon URL (light mode)
tokenIconUrlNightstringToken icon URL (dark mode)
supportChainsarraySupported blockchain codes, e.g. ["POLYGON"]

Request Example

GET /v5/alpha/prediction/pay-token-list HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1704067200000
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": [
{
"tokenCode": "USDC",
"symbol": "USDC",
"tokenDecimals": 6,
"tokenIconUrlDay": "https://example.com/usdc-day.png",
"tokenIconUrlNight": "https://example.com/usdc-night.png",
"supportChains": ["POLYGON"]
}
],
"retExtInfo": {},
"time": 1704067200000
}