Kerrzo Platform API
Kerrzo Platform API
Build custom apps on top of Kerrzo — projects, timesheets, attendance, chat, and more.
Quickstart
Set your base URL, authenticate requests with an API token, then fetch a simple resource like /me or /projects.
Tip: tokens are org-scoped (tenancy)
cURL
# Base URL
BASE_URL="https://api.kerrzo.com"
# Authenticated request
curl "$BASE_URL/v1/me" \
-H "Authorization: Bearer $KERRZO_API_TOKEN" \
-H "Content-Type: application/json"
# Fetch projects
curl "$BASE_URL/v1/projects" \
-H "Authorization: Bearer $KERRZO_API_TOKEN"Concepts
Tenancy model
Kerrzo is multi-tenant. Most resources live within an organization (org). Tokens are scoped to a single org by default.
API tokens
Use a bearer token in the Authorization header. Treat tokens like passwords; rotate on suspicion.
Environments
Separate sandbox and production credentials. Use sandbox for development and automated tests.
Base URLs
Sandbox
https://api.kerrzo.com
Production
https://api.kerrzo.com
Your account may have region-specific hosts later; treat base URLs as configurable in your app.
Support
Need help integrating?
Reach out to support for token issues, webhook setup, rate limits, or guidance on best practices.