Retrieve a list of all operators

Retrieve the list of operators created and the setting values of each operator.

Size

  • The query parameter size is optional (Min = 1, Max = 1000, Default = 100)
  • Returns an error when given a negative number
  • Uses default value (size=100) when size=0
  • Uses the maximum value (size=1000) when given a value higher than the maximum value
Request
Security:
query Parameters
size
string <= 1000
Default: 100

Maximum size to be queried

cursor
string

Information on the last cursor

from-timestamp
string

Starting point of the time range to be queried (timestamp in seconds)

to-timestamp
string

Limit of the time range to be queried (timestamp in seconds)

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200
400
get/v1/operator
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://anchor-api.klaytnapi.com/v1/operator?size=100&cursor=string&from-timestamp=string&to-timestamp=string' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "cursor": "",
  • "items": [
    ]
}