Skip to main content
There are two APIs here and they have nothing in common — different base paths, different auth, different response shapes. Picking the wrong one is the usual first wrong turn.

Marketplace API

Public, no key, read-only.Collections, floors, listings, sales and tokens across every chain.https://exclusivo.one/v1

Store API

API key, scoped, read and write.Your own shop’s products, orders, customers, stock and analytics. Plus webhooks.https://exclusivo.one/api/v1

Side by side

Which one do you want

Marketplace API. No key needed. → Marketplace API
Store API, products:write. → Products
Store API with orders:read — or better, a webhook, so you’re not polling.
Marketplace API. It’s CORS-open, so you can call it straight from the browser.

Caching

Marketplace responses are CDN-cached with stale-while-revalidate, so repeated identical requests are cheap and don’t eat your rate limit at the origin. Don’t add cache-busting parameters. The Store API isn’t cached — it returns your live data.

Start here