-
Looking for a way to get a list (array) of all the NFTs owned by an address, of a specific collection. If an address owns 100 nfts of that collection, I am looking for an array that includes these. Looking at https://explorer.degen.tips/api-docs (Degen chain) I found |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think I figured it out. A different endpoint:
can be used with |
Beta Was this translation helpful? Give feedback.
I think I figured it out. A different endpoint:
/tokens/{address_hash}/instances
can be used with
?holder_address_hash=0x...
to filter for an owner address. Andnext_page_params
provides aunique_token
that can be used to paginate. Looks like it returns 50 per page (guesstimate).