v3 API·REST · OAuth2 · Webhooks
Build apps
on Zucandu
Access products, orders, customers and more across thousands of stores. One API, every store.
Quick start
curl https://{store}.zucandu.com/api/v3/app/products \
-H "Authorization: Bearer {token}" \
-H "Accept: application/json"200{ "data": [ { "id": 1, "name": "Classic T-Shirt", "price": "29.99", ... } ], "meta": { "total": 48 } }
What you can build
Products18 endpoints
Full product catalog management — create, update, bulk import, inventory, variants.
Orders11 endpoints
Order lifecycle — create, update status, add products, comments, duplicates.
Customers11 endpoints
Customer profiles, addresses, metadata, bulk import.
Webhooks9 endpoints
Real-time events for products, orders, customers with HMAC-SHA256 signatures.
Up in 3 steps
01
Register your app
Create an app on zucandu.com/developer to get your client_id and client_secret.
02
Get an access token
Use OAuth2 Client Credentials to exchange your credentials for a Bearer token.
03
Make your first call
Call GET /products with your token. You're ready to build.