Skip to main content

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

GoalDoc
AI agentMCP quickstart
Create SKUCreate product
Amazon publishAmazon workflow
ContractsPostman

Full auth detail: Authentication.