Get events

The GET /events endpoint data field returns an array of Event objects matching the filters provided with the request, or an empty array if no events match the filters provided.

Get events successful response schema:

{
  "success": true,
  "message": null,
  "data": Event[] | []
}

Event object schema:

Field NameField TypeDescription
idnumberThe event's id.
fromstringThe address from where the event originated.
tostring | nullThe destination address of the event. Only applicable for sales, transfers and mints.
typeCANCEL_LIST | CANCEL_OFFER | LIST | MINT | OFFER | SALE | TRANSFERThe order type.
hashstring | nullThe event's hash.
createdAtstringThe event's DB creation time.
collectionCollectionThe collection object (see Collection Schema)
tokenTokenThe token object (see Tokens Schema)
orderOrderThe order object (see Orders Schema)