Search by hash
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/search
search
Last modified:2024-12-11 10:59:20
responses.SearchItem
entities.Block
652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF
.Hash should be hexadecimal and has a length of 64.
Example response
{
"type": "block",
"result": {
"id": 1,
"hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
// ... rest fields from response.Block type
}
}
Tx
652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF
.Tx should be hexadecimal and has a length of 64.
Example response
{
"type": "tx",
"result": {
"id": 1,
"hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
// ... rest fields from response.Tx type
}
}
Address
Hash example:
celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60
.Address has prefix
celestia
and has length 47.Also, it should be decoded by
bech32
.Example response
{
"type": "address",
"result": {
"id": 1,
"hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60",
"height": 100,
"balance": "6525472354"
}
}
Namespace
Hash example:
U3dhZ2dlciByb2Nrcw==
.Identity pair example:
014723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02
Example response
{
"type": "namespace",
"result": {
"id": 1,
"hash": "U3dhZ2dlciByb2Nrcw==",
"version": 1,
"namespace_id": "4723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02"
// ... rest fields from response.Namespace type
}
}
Validator
For example: names
Node 1
and Node 2
can be found with query string Node
Example response
{
"type": "validator",
"result": {
"id": 1,
"moniker": "Node 1",
// ... rest fields from response.Validator type
}
}
Rollup
For example: rollup with names
Rollup 1
and Rollup 2
can be found with query string Rol
Example response
{
"type": "rollup",
"result": {
"id": 1,
"moniker": "Rollup 1",
// ... rest fields from response.Rollup type
}
}
Request
Query Params
query
string
required
Example:
search-string
Request samples
Responses
Modified at 2024-12-11 10:59:20