Retrieve a list of fee payer accounts

Retrieves a list of all Kaia fee payer accounts.

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
integer <int64> <= 1000
Default: 100

Maximum size to be queried

Example: size=3
cursor
string

Information on the last cursor

to-timestamp
string

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

from-timestamp
string

Starting point 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

The request is successful.

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