GET
/
accounts
/
{address}
/
events
/
{creation_number}
curl --request GET \
  --url https://aptos-mainnet.s.chainbase.online/{api-key}/v1/accounts/{address}/events/{creation_number}
[
  {
    "version": "32425224034",
    "guid": {
      "creation_number": "32425224034",
      "account_address": "0xc739507214d0e1bf9795485299d709e00024e92f7c0d055a4c2c39717882bdfd"
    },
    "sequence_number": "32425224034",
    "type": "<string>",
    "data": "<any>"
  }
]

Path Parameters

address
string
required

Hex-encoded 32 byte Aptos account, with or without a 0x prefix, for which events are queried. This refers to the account that events were emitted to, not the account hosting the move module that emits that event type.

Example:

"0xc739507214d0e1bf9795485299d709e00024e92f7c0d055a4c2c39717882bdfd"

creation_number
string
required

Creation number corresponding to the event stream originating from the given account.

Example:

"32425224034"

Query Parameters

start
string

Starting sequence number of events.

If unspecified, by default will retrieve the most recent events

Example:

"32425224034"

limit
integer

Max number of events to retrieve.

If unspecified, defaults to default page size

Response

200
application/json

The response is of type object[].