Activity represents events happening in the system:
Full information you can check in API Reference
Mint, Burn, Transfer
These are represented by types: MintActivity
, BurnActivity
and TransferActivity
Field | Type | Description |
---|---|---|
@type | enum | "MINT", "BURN" or "TRANSFER" |
from | string (Address) | Previous owner of the NFT (not applicable to Mint) |
owner | string (Address) | New owner of the NFT (not applicable to Burn) |
contract | string (ContractAddress) | |
collection | string (CollectionId) | |
tokenId | string (BigInteger) | token identifier (not applicable to some blockchains) |
itemId | string (ItemId) | Identifier of an NFT |
value | string (BigInteger) | number of NFTs transferred (in case it's a multiple NFT, e.g. ERC-1155) |
purchase | ||
transactionhash | ||
blockchainInfo | object (BlockchainInfo) | Set of fields showing where this activity comes from: transaction hash, block hash, log index etc |
id | string (ActivityId) | Unique Activity identifier |
date | string (date-time) | Date and time when activity occured |
cursor | ||
reverted |
*Fields marked with bold are required
List, Bid
Represented by OrderListActivity
and OrderBidActivity
Field | Type | Description |
---|---|---|
@type | enum | "LIST" or "BID" |
orderId | string (OrderId) | Identifier of the order |
hash | string | Order hash |
maker | string (Address) | Wallet which created the order |
make | object (Asset) | Make part of the order |
take | object (Asset) | Take part of the order |
price | NFT price, nominated in original order currency | |
priceUsd | NFT price, nominated in USD on the date of listing | |
source | enum | RARIBLE" "OPEN_SEA" "X2Y2". See full list of values in API Reference |
id | string (ActivityId) | Unique identifier of the activity |
date | string (date-time) | Date and time when activity occured |
lastUpdatedAt | ||
reverted |
*Fields marked with bold are required
Sell, Accept Bid
Represented by OrderMatchActivity
Field | Type | Description |
---|---|---|
@type | enum | MATCH |
orderId | string (OrderId) | Identifier of the order |
nft | object (Asset) | NFT which was sold |
payment | object (Asset) | Currency which was NFT sold for |
buyer | string (Address) | Who bought the NFT |
seller | string (Address) | Who sold the NFT |
buyerOrderHash | string | Hash of the buyer's order |
sellerOrderHash | string | Hash of the seller's order |
price | string (BigDecimal) | Price of the NFT nominated in payment |
priceUsd | string (BigDecimal) | Price of the NFT nominated in USD |
amountUsd | string (BigDecimal) | Total amount paid for the NFT (in USD) |
type | enum | SELL, ACCEPT_BID |
sellMarketplaceMarker | string | Marker of the marketplace where sell order was created (used to mark transactions and orders. Useful for tracing volume from the marketplace) |
buyMarketplaceMarker | string | Marker of the marketplace where buy order was created (used to mark transactions and orders. Useful for tracing volume from the marketplace |
source | enum | "RARIBLE" "OPEN_SEA" "X2Y2" "LOOKSRARE" "SUDOSWAP" etc |
blockchainInfo | object (BlockchainInfo) | Set of fields showing where this activity comes from: transaction hash, block hash, log index etc |
id | string (ActivityId) | Unique identifier of the event |
date | string (date-time) | Date when event occured |
lastUpdatedAt | string (date-time) | |
reverted | boolean |
*Fields marked with bold are required
Cancel List, Cancel Bid
Represented by OrderCancelListActivity
and OrderCancelBidActivity
Field | Type | Description |
---|---|---|
@type | enum | "CANCEL_LIST" or "CANCEL_BID" |
orderId | string (OrderId) | Identifier of the order |
hash | string | Order hash |
maker | string (Address) | Wallet which created the order |
make | object (Asset) | Make part of the cancelled order |
take | object (Asset) | Take part of the cancelled order |
source | enum | RARIBLE" "OPEN_SEA" "X2Y2". See full list of values in API Reference |
price | NFT price, nominated in original order currency | |
id | string (ActivityId) | Unique identifier of the activity |
date | string (date-time) | Date and time when activity occured |
lastUpdatedAt | ||
reverted |
*Fields marked with bold are required