get https://api.blockvision.org/v2/monad/collection/activities
Returns all activities of a given non-fungible token contract on Monad Testnet.
Supported on Monad Testnet.
The Collection Activity API on Monad is currently available to our paid Members. Free tier members can also enjoy a trial period with 30 free calls. If you're interested, please register directly through here. Please note that the API Key can also be used for your RPC endpoint.
Parameter
address
,string
- a 42 character address with '0x' as prefix. The wallet address to check for collection activities.collectionAddress
,string
- the contract address of the NFT collection to get activities for.cursor
,string
- next page cursor.limit
,int32
- the maximum number of results to return per page. Defaults to 20, maximum is 50.
Response
code
,number
- response status code, e.g.,0
for success.reason
,string
- reason message if there's an error.message
,string
- response message, e.g.,OK
.result
,object
- result object containing collection activity data.data
,array object
- an array of collection activity objects.transactionHash
,string
- the transaction hash.method
,string
- the method of the activity (e.g., "mint", "transfer").blockNumber
,number
- the block number in which the transaction was included.timestamp
,number
- the timestamp of the transaction in seconds.from
,string
- the sender address.to
,string
- the recipient address.type
,string
- the type of NFT standard (e.g., "ERC721", "ERC1155").nft
,object
- details about the NFT.name
,string
- the name or ID of the NFT.contractAddress
,string
- the contract address of the NFT collection.tokenId
,string
- the token ID of the NFT.image
,string
- URL to the NFT's image.qty
,string
- the quantity of the NFT (typically relevant for ERC1155).
collectionName
,string
- the name of the NFT collection.verified
,boolean
- whether the collection is verified.fromAddress
,object
- details about the sender address.address
,string
- the sender's address.type
,string
- the address type.isContract
,boolean
- whether the address is a contract.verified
,boolean
- whether the address is verified.ens
,string
- the ENS name associated with the address.name
,string
- the name associated with the address.isContractCreated
,boolean
- whether the address was created as a contract.
toAddress
,object
- details about the recipient address.- Same structure as
fromAddress
.
- Same structure as
nextPageCursor
,string
- the cursor for fetching the next page of results.total
,number
- the total number of collection activities found.