Get addresses
GET
/v1/addressLast modified: 6 months ago
Returns a list of addresses in network.
Request
Query Params
limit
integer
optional
Count of requested entities
<= 100
Example:
10
offset
integer
optional
Offset
Example:
0
sort
enum<string>
optional
Sort order
Allowed values:
ascdesc
Example:
asc
sort_by
enum<string>
optional
Sort field
Allowed values:
iddelegatedspendableunbondingfirst_heightlast_height
Example:
delegated
Request samples
Responses
OK(200)
Bad Request(400)
Internal Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
balance
object (responses.Balance)
optional
Balance of address information
currency
string
optional
Example:
utia
delegated
string
optional
Example:
10000000000
spendable
string
optional
Example:
10000000000
unbonding
string
optional
Example:
10000000000
first_height
integer
optional
Example:
100
hash
string
optional
Example:
celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60
id
integer
optional
Example:
321
last_height
integer
optional
Example:
100
celestials
object (responses.Celestials)
optional
Celestials primary domain
name
string
read-onlyrequired
Celestials domain
>= 1 characters
Example:
celestials-id
image_url
string
required
Image URL
Example:
https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC
primary
boolean
optional
True if the domain is primary for the account. Default: false
Default:
false
Example
[
{
"balance": {
"currency": "utia",
"delegated": "10000000000",
"spendable": "10000000000",
"unbonding": "10000000000"
},
"first_height": 100,
"hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60",
"id": 321,
"last_height": 100,
"celestials": {
"name": "celestials-id",
"image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
"primary": false
}
}
]
Last modified: 6 months ago