Reputation: 27
According to openSea api we use Retrieving events
Under event_type
We found The event type to filter. Can be created for new auctions, successful for sales, cancelled, bid_entered, bid_withdrawn, transfer, or approve
My question here is how to find minted ones ?
IE: This wallet Unnamed minted this token : Vortex #838
My Goal is to get list of all NFT's minted by specific user.
Upvotes: 0
Views: 650
Reputation: 836
I think collectibles is the same as NFT(ERC 721) so Try this
https://api.opensea.io/api/v1/collections?asset_owner=your_wallet_address&offset=0&limit=300
Upvotes: 2