GET
/
insights
/
v1
/
events
/
{contractAddress}
Get contract events
curl --request GET \
  --url https://data-api.b3.fun/insights/v1/events/{contractAddress}
{
  "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
  }
}

Response

200
application/json

Successful response

The response is of type object.