Get started
Quickstart
Authenticate and make your first API call.
The platform exposes a REST API behind a gateway. Every request is scoped to a tenant and authenticated with a bearer token.
1. Get an API key
In the operator console, open Settings → API keys and issue a per-tenant key with the scopes you need. Keys can be rotated and revoked at any time.
2. Make an authenticated request
curl https://api.chatcommerce360.com/api/v1/catalog/products \
-H "Authorization: Bearer $CC360_API_KEY" \
-H "X-Tenant-ID: $CC360_TENANT"3. You’re in
A 200 returns your tenant’s catalog. From here, explore the API reference or wire the MCP tools into an AI agent.
Treat API keys like passwords. Never embed them in client-side code or commit them to source — inject them from a secret store.