Documentation Index
Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt
Use this file to discover all available pages before exploring further.
NFT Marketplaces and Discovery
Uniblock can cover most of the read-heavy data layer for NFT products: collection metadata, item metadata, wallet holdings, floor prices, sales, listings, and ownership. That makes it a practical fit for marketplace frontends, collector dashboards, and collection discovery tools.Best-fit workflows
- Collection landing pages
- NFT detail pages
- Wallet ownership and portfolio views
- Sales and floor-price monitors
- Real-time event streams for transfers and contract events
Recommended APIs
GET /nft/collection-metadataGET /nft/nft-in-collectionGET /nft/metadataGET /nft/floor-priceGET /nft/salesGET /nft/owners/nftGET /nft/owners/contractGET /nft/transfersGET /nft/transfers/nft
Suggested implementation flow
1. Build the collection page
At minimum, load:- collection metadata
- a paginated list of NFTs in the collection
- floor price
- recent sales
2. Build the asset page
For each NFT detail page, combine:GET /nft/metadataGET /nft/transfers/nftGET /nft/owners/nft
3. Build the owner experience
For user profiles and portfolio views, combine:GET /nft/balanceGET /nft/owned-collections- token endpoints if the same app also shows fungible positions
4. Add event-driven updates
Use contract-event webhooks or NFT-focused templates from the webhook flow to:- refresh collection activity feeds
- notify on transfers
- track popular contracts and major sales activity