Skip to main content

Get Institution IP Change Log

info

This endpoint must be requested with a main account API key.

HTTP Request

GET/v5/ins/ip/changelog

Request Parameters

ParameterRequiredTypeComments
startTimefalsestringFilter start time, Unix timestamp in milliseconds
endTimefalsestringFilter end time, Unix timestamp in milliseconds
limitfalseintegerRecords per page. Range: [1, 50]. Default: 20
cursorfalsestringPagination cursor. Use the nextPageCursor value from the previous response

Response Parameters

ParameterTypeComments
listarrayArray of IP change records
> operationTypestringAction type: ADD, REMOVE, ENABLE, or DISABLE
> ipAddressstringThe IP address affected by the operation
> domainTypestringConnection protocol. GW for HTTP hostname, WS for WebSocket hostname
> operatorstringInternal team member who performed the operation
> createdAtstringOperation timestamp in UTC+0, ISO 8601 format
nextPageCursorstringOpaque token for retrieving the next page of results

Request Example

GET /v5/ins/ip/changelog?limit=3 HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1779362662315
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"operationType": "DISABLE",
"ipAddress": "193.118.167.247",
"domainType": "WS",
"operator": "wood.liang1",
"createdAt": "2026-05-21T06:02:36Z"
},
{
"operationType": "DISABLE",
"ipAddress": "18.99.43.128/25",
"domainType": "WS",
"operator": "wood.liang1",
"createdAt": "2026-05-21T06:02:36Z"
}
],
"nextPageCursor": "eyJpZCI6NDE0LCJjcmVhdGVkQXQiOiIyMDI2LTA1LTIxVDA2OjAyOjM2In0="
},
"time": 1779362027705
}