Introduction
The DYLI Public API gives builders a way to read marketplace activity: vaulted collectibles, live listings, sales, P2P trades, seller profiles, username or wallet holdings, boxes, Fair Drops, digital packs, rewards, referrals, live contracts, transaction totals, and verification data.
Everything starts under /api/public/v1. Read APIs are open first. Public write APIs are currently not supported but coming soon.
What You Can Build
- Search experiences for DYLI products and collectibles.
- Seller pages, holder views, and portfolio tools.
- Sales, GMV, and marketplace analytics.
- Completed collector-to-collector trade feeds.
- Token metadata resolvers and product detail pages.
- Box odds, inventory, pull history, and RNG verification.
- Fair Drop, rewards, referral, digital pack, contract, and transaction widgets.
API Shape
Endpoints return JSON. Paginated endpoints use page and pageSize, with capped defaults so large surfaces stay quick. Rows that map to DYLI pages include a canonical url when the API has enough information to build one.
Send your API key with x-api-key or Authorization: Bearer <api_key>.
curl "https://www.dyli.io/api/public/v1/listings?page=1&pageSize=25" \
-H "x-api-key: $DYLI_API_KEY"
Live Discovery
The overview endpoint is the API index. It shows live endpoints, key requirements, and routes that are currently not supported.
curl "https://www.dyli.io/api/public/v1/overview" \
-H "x-api-key: $DYLI_API_KEY"