curl --request GET \
--url https://data-api.b3.fun/insights/v1/events
{
"data": [
{
"chain_id": "<string>",
"block_number": 123,
"block_hash": "<string>",
"block_timestamp": 123,
"transaction_hash": "<string>",
"transaction_index": 123,
"log_index": 123,
"address": "<string>",
"data": "<string>",
"topics": [
"<string>"
],
"decoded": {
"name": "<string>",
"signature": "<string>",
"indexed_params": {},
"non_indexed_params": {}
}
}
],
"aggregations": "<any>",
"meta": {
"chain_ids": [
123
],
"address": "<string>",
"signature": "<string>",
"page": 123,
"limit_per_chain": 123,
"total_items": 123,
"total_pages": 123
}
}
Get events
curl --request GET \
--url https://data-api.b3.fun/insights/v1/events
{
"data": [
{
"chain_id": "<string>",
"block_number": 123,
"block_hash": "<string>",
"block_timestamp": 123,
"transaction_hash": "<string>",
"transaction_index": 123,
"log_index": 123,
"address": "<string>",
"data": "<string>",
"topics": [
"<string>"
],
"decoded": {
"name": "<string>",
"signature": "<string>",
"indexed_params": {},
"non_indexed_params": {}
}
}
],
"aggregations": "<any>",
"meta": {
"chain_ids": [
123
],
"address": "<string>",
"signature": "<string>",
"page": 123,
"limit_per_chain": 123,
"total_items": 123,
"total_pages": 123
}
}
Successful response
The response is of type object
.