- Introduction
- Celenium API
- Address
- Get addresses
- Get count of addresses in network
- Get address info
- Get blobs pushed by address
- Get delegations made by address
- Get grants where address is grantee
- Get grants made by address
- Get address messages
- Get redelegations made by address
- Get address stats
- Get address transactions
- Get undelegations made by address
- Get vesting for address
- Namespace
- List all blobs with filters
- Get namespace blob by commitment on height
- Get blob metadata by commitment on height
- Get namespaces
- Get namespace info
- Get namespace info by id and version
- Get blob metadata for namespace
- Get namespace messages by id and version
- List rollups using the namespace
- Get namespace info by base64
- Get namespace blobs on height
- Block
- General
- Gas
- Rollup
- Search
- Stats
- Get histogram for namespace with precomputed stats
- Get namespaces with sorting by size.
- Get current TIA price
- Get histogram with TIA price
- Get histogram with precomputed stats
- Get cumulative histogram with precomputed stats
- Get histogram for staking with precomputed stats
- Get value by table and function
- Get tps
- Transactions
- Validator
- Vesting
- Websocket
Get transaction events
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/tx/{hash}/events
transactions
Last modified:2024-09-28 11:58:36
Request
Path Params
hash
string
required
>= 64 characters<= 64 characters
Example:
55BB95B369EDE2F4970BDF6F59D30921FE1BD52F018E0C797440630E3CB93DD0
Query Params
limit
integer
optional
<= 100
Example:
10
offset
integer
optional
Example:
0
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-mainnet.celenium.io/v1/tx/55BB95B369EDE2F4970BDF6F59D30921FE1BD52F018E0C797440630E3CB93DD0/events?limit=10&offset=0'
Responses
🟢200OK
application/json
Body
array of:
data
object
optional
Additional properties
integer | number | string | boolean
optional
height
integer <int64>
optional
Example:
100
id
integer <int64>
optional
Example:
321
position
integer <int64>
optional
Example:
1
time
string <date-time>
optional
Example:
2023-07-04T03:10:57+00:00
tx_id
integer <int64>
optional
Example:
11
type
enum<string>
optional
Allowed values:
unknowncoin_receivedcoinbasecoin_spentburnmintmessageproposer_rewardrewardscommissionlivenesstransfercelestia.blob.v1.EventPayForBlobsredelegateAttestationRequestwithdraw_rewardswithdraw_commissionset_withdraw_addresscreate_validatordelegateedit_validatorunbondtxcomplete_redelegationcomplete_unbondinguse_feegrantrevoke_feegrantset_feegrantupdate_feegrantslashproposal_voteproposal_depositsubmit_proposalcosmos.authz.v1beta1.EventGrantsend_packetibc_transferfungible_token_packetacknowledge_packetcreate_clientupdate_clientconnection_open_tryconnection_open_initconnection_open_confirmconnection_open_ackchannel_open_trychannel_open_initchannel_open_confirmchannel_open_ackrecv_packetwrite_acknowledgementtimeouttimeout_packetcosmos.authz.v1beta1.EventRevokecosmos.authz.v1.EventRevokecancel_unbonding_delegation
Example:
commission
Example
[
{
"data": {
"property1": null,
"property2": null
},
"height": 100,
"id": 321,
"position": 1,
"time": "2023-07-04T03:10:57+00:00",
"tx_id": 11,
"type": "unknown"
}
]
🟠400Bad Request
🔴500Internal Server Error
Modified at 2024-09-28 11:58:36