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 Name | Field Type | Description |
---|---|---|
id | number | The event's id. |
from | string | The address from where the event originated. |
to | string | null | The destination address of the event. Only applicable for sales, transfers and mints. |
type | CANCEL_LIST | CANCEL_OFFER | LIST | MINT | OFFER | SALE | TRANSFER | The order type. |
hash | string | null | The event's hash. |
createdAt | string | The event's DB creation time. |
collection | Collection | The collection object (see Collection Schema) |
token | Token | The token object (see Tokens Schema) |
order | Order | The order object (see Orders Schema) |