The Events Service is responsible for retrieving information about events that occur on the blockchain. By utilizing various parameters within the available endpoints, we can refine our queries to obtain more precise details.
Swagger: https://api.metaproprotocol.com/ms/nft-events/docs/#/
This group of endpoints allows to retrieval of information about a user's blockchain-related activities. You can obtain details about various types of transactions, such as creation, purchase, and token transfers, along with timestamps and other relevant data.
Returns a list of events representing user activities
get
../ /v1/user-events/ {address} address string · min: 42 Required Example: 0x245bac22bc9b034862b2716a3e9b1eec823c87ec
skip number Optional Example: 2
limit number · min: 1 Optional Example: 2
blockNumber number · min: 1 · max: 100000000 Optional Example: 25285441
transactionHash string · min: 66 Optional Example: 0x99e686a1ed12b5269c69871f4d4baf626629770b3c5929cb58e1a85515965a06
event string · enum Optional Possible values: Minted
MintedBatch
TransferSingle
TransferBatch
OwnershipTransferred
network string · enum Optional Possible values: bnb-chain
ethereum
polygon
arbitrum
base
createdAt string · enum Optional Example: desc
Possible values: desc
asc
blockNumber string · enum Optional Example: desc
Possible values: desc
asc
200 Success
application/json
Response one of
object Optional
Show properties
or object Optional
Show properties
or object Optional
Show properties
or object Optional
Show properties
400 Incorrect data requested
application/json
Copy GET /user-events/{address} HTTP/1.1
Host: v1
Accept: */*
Example cURL
Copy curl -X 'GET' \
'https://api.metaproprotocol.com/ms/nft-events/v1/user-events/0x832735f45299c8b6f7263e758cadba766459cd21?createdAt=desc' \
-H 'accept: application/json'
This group of endpoints allows to retrieval of activity history related to tokens. You can obtain details about events and transactions associated with tokens on your marketplace.
Returns a list of events representing user activities
skip number Optional Example: 2
limit number · min: 1 Optional Example: 2
address string · min: 35 · max: 55 Optional Example: 0x245bac22bc9b034862b2716a3e9b1eec823c87ec
blockNumber number · min: 1 · max: 100000000 Optional Example: 25285441
transactionHash string · min: 66 Optional Example: 0x99e686a1ed12b5269c69871f4d4baf626629770b3c5929cb58e1a85515965a06
event string · enum Optional Possible values: Minted
MintedBatch
TransferSingle
TransferBatch
OwnershipTransferred
owner string · min: 35 · max: 55 Optional
initialOwner string · min: 35 · max: 55 Optional
creator string · min: 35 · max: 55 Optional
from string · min: 35 · max: 55 Optional
to string · min: 35 · max: 55 Optional
operator string · min: 35 · max: 55 Optional
createdAt string · enum Optional Example: desc
Possible values: desc
asc
blockNumber string · enum Optional Example: desc
Possible values: desc
asc
200 Success
application/json
Response one of
object Optional
Show properties
or object Optional
Show properties
or object Optional
Show properties
or object Optional
Show properties
400 Incorrect data requested
application/json
Copy GET /token-events HTTP/1.1
Host: v1
Accept: */*
Example cURL
Copy curl -X 'GET' \
'https://api.metaproprotocol.com/ms/nft-events/v1/token-events?createdAt=desc' \
-H 'accept: application/json'