Get redelegations made by address
GET
/v1/address/{hash}/redelegationsLast modified: 4 months ago
Get redelegations made by address
Request
Path Params
hash
string
required
Hash
>= 47 characters<= 47 characters
Example:
celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r
Query Params
limit
integer
optional
Count of requested entities
>= 1<= 100
Example:
10
offset
integer
optional
Offset
>= 1
Example:
0
Request samples
Responses
OK(200)
Bad Request(400)
Internal Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
amount
string
optional
Example:
0.1
completion_time
string
optional
Example:
2023-07-04T03:10:57+00:00
delegator
string
optional
Example:
celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60
destination
object (responses.ShortValidator)
optional
cons_address
string
optional
Example:
E641C7A2C964833E556AEF934FBF166B712874B6
id
integer
optional
Example:
321
moniker
string
optional
Example:
Easy 2 Stake
height
integer
optional
Example:
100
source
object (responses.ShortValidator)
optional
time
string
optional
Example:
2023-07-04T03:10:57+00:00
Example
[
{
"amount": "0.1",
"completion_time": "2023-07-04T03:10:57+00:00",
"delegator": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60",
"destination": {
"cons_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
"id": 321,
"moniker": "Easy 2 Stake"
},
"height": 100,
"source": {
"cons_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
"id": 321,
"moniker": "Easy 2 Stake"
},
"time": "2023-07-04T03:10:57+00:00"
}
]
Last modified: 4 months ago