Retrieve a list of transactions by the operator

Specify an operator ID to retrieve a list of transactions created by the 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:
path Parameters
operator-id
required
string

Operator account address

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