Quickstart
Set your API key as an environment variable:
export DYLI_API_KEY="dyli_live_..."
Fetch active listings:
curl "https://www.dyli.io/api/public/v1/listings?page=1&pageSize=10" \
-H "x-api-key: $DYLI_API_KEY"
Search products:
curl "https://www.dyli.io/api/public/v1/search?q=pokemon&onlyListed=true" \
-H "Authorization: Bearer $DYLI_API_KEY"
Fetch token metadata:
curl "https://www.dyli.io/api/public/v1/metadata/12345" \
-H "x-api-key: $DYLI_API_KEY"
Base URL
https://www.dyli.io/api/public/v1
Use the environment-specific host for staging or preview deployments.