Build NFT apps, galleries, and analytics tools with 30+ endpoints covering collections, marketplace data, holder stats, and activity feeds.
The XRPL.to NFT API provides comprehensive coverage of the XRP Ledger's native NFT ecosystem. With 30+ dedicated endpoints, you can access collection metadata, marketplace listings with buy/sell offers, holder analytics and distribution data, trader leaderboards, activity feeds, and full portfolio views. All data is indexed directly from on-chain NFToken objects and offers.
Browse and query NFT collections with metadata, floor prices, volume, and trait data.
# List collections sorted by volume curl https://api.xrpl.to/v1/nft/collections?sortBy=volume&limit=10 # Get specific collection details curl https://api.xrpl.to/v1/nft/collections/COLLECTION_SLUG
Collection endpoints also include trait breakdowns, floor price history, and OHLC data for tracking collection value over time.
Look up any NFT by its NFTokenID to get metadata, current offers, and transaction history.
# Get NFT details curl https://api.xrpl.to/v1/nft/NFTOKEN_ID # Get buy and sell offers for an NFT curl https://api.xrpl.to/v1/nft/NFTOKEN_ID/offers
The offers endpoint returns both buy and sell offers with amounts, expiration times, and owner accounts.
Analyze who holds NFTs in a collection, distribution patterns, and individual holder portfolios.
# Top holders of a collection curl https://api.xrpl.to/v1/nft/holders/COLLECTION_SLUG?page=1&limit=20 # Holder distribution breakdown curl https://api.xrpl.to/v1/nft/holders/COLLECTION_SLUG/distribution # Check specific address holdings curl https://api.xrpl.to/v1/nft/holders/address/rAddress
Distribution data groups holders by quantity ranges, useful for identifying whale concentration and healthy distribution patterns.
Access market-wide NFT analytics including volume trends, top traders, and collection performance.
# Market overview curl https://api.xrpl.to/v1/nft/analytics/market # Top NFT traders curl https://api.xrpl.to/v1/nft/analytics/traders
Trader analytics include buy/sell volumes, profit estimates, and trade frequency for top marketplace participants.
Stream recent NFT sales, transfers, mints, and burns across the entire marketplace or for a specific collection.
curl https://api.xrpl.to/v1/nft/activity?limit=50
Each activity record includes the event type (sale, transfer, mint, burn), involved parties, price (if applicable), and timestamp.
Get a full NFT portfolio for any XRP Ledger account, including estimated values based on floor prices.
curl https://api.xrpl.to/v1/nft/account/rAddress/nfts
Returns all NFTs owned by the account with collection info, metadata URIs, and current market value estimates. See the full documentation for pagination and filtering options.