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

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.

Read the full guide →