GET
/
v2
/
{chain_name}
/
events
Get Events
curl --request GET \
  --url https://api.data.ormilabs.com/v2/{chain_name}/events
{
"next_cursor": "ICJkYXNkYXMifQ==",
"events": [
{
"block_number": 22412527,
"block_timestamp": "2025-05-04T19:38:11Z",
"contract_address": 2.807754160281623e+47,
"data": "0x000...",
"log_index": 3213123,
"topics": [
1.0038928713678618e+77
],
"transaction_hash": 6.735722084347401e+76
}
]
}

Authorizations

Authorization
string
header
required

(Optional) Enter your API key in the format: Bearer <api_key>. Providing an API key may grant higher rate limits or access to additional features. The API will function without an API key for basic access.

Path Parameters

chain_name
enum<string>
required

The name or ID of the blockchain.

Available options:
ethereum
Example:

"ethereum"

Query Parameters

contract_address
string

Contract addresses to filter by.

Example:

1.074999140385143e+48

signatures
string[]

Comma-separated list of event signatures (topic0) to filter events by.

from_block
integer

Starting block number for the range query.

Required range: x >= 0
to_block
integer

Ending block number for the range query.

Required range: x >= 0
limit
integer
default:100

Maximum number of items to return.

Required range: 1 <= x <= 1000
cursor
string

Cursor for pagination to retrieve the next set of results.

Response

200
application/json

Successfully retrieved events.

The response is of type object.