Your first API call
Prove connectivity in under five minutes.
1. Login
curl -s -X POST https://api.catazenta.com/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email":"you@company.com","password":"YOUR_PASSWORD","client_id":"pim_web"}'
Save access_token from the JSON response.
2. List products
curl -s "https://api.catazenta.com/v1/products?page=1&page_size=5" \
-H "Authorization: Bearer ACCESS_TOKEN" \
-H "X-Tenant-Id: YOUR_TENANT_UUID"
3. Verify identity
curl -s https://api.catazenta.com/v1/auth/me \
-H "Authorization: Bearer ACCESS_TOKEN"
Next steps
| Goal | Doc |
|---|---|
| AI agent | MCP quickstart |
| Create SKU | Create product |
| Amazon publish | Amazon workflow |
| Contracts | Postman |
Full auth detail: Authentication.