Get Broker Whitelist IP
info
This endpoint must be queried from a whitelisted IP address.
HTTP Request
GET/v5/broker/whitelist/ipRequest Parameters
None
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| result | array | Object |
| > name | string | Client name |
| > endpointDomain | string | Dedicated hostname assigned exclusively to this client |
| > ipList | array | Array of whitelisted IP addresses |
Request Example
- HTTP
GET /v5/broker/whitelist/ip HTTP/1.1
Host: api.bybit.com
Response Example
{
"retCode": 0,
"retMsg": "OK",
"result": [
{
"name": "CoinXXX",
"endpointDomain": "cabxxx0bnh.bybit-aws.com",
"ipList": [
"13.112.01.101",
"35.78.100.1"
]
},
{
"name": "CoinXXX",
"endpointDomain": "vgjzztjbx91ajfj.bybit.com",
"ipList": [
"13.112.01.101",
"35.78.100.1",
"35.78.100.2"
]
}
],
"time": 1779362854157
}