Coming soon. The public Developer API is on the roadmap. The page below outlines the planned surface so you can plan integrations. See roadmap.
What exists today
Inside the app, Settings → Developers ships:- Outbound webhooks — admins register HTTPS endpoints, pick events, and receive signed POSTs as those events fire. Built. See Webhooks for the planned event taxonomy and payload shape.
- A versioned, stable, public REST API surface.
- API tokens with scoped abilities suitable for production use.
- Official SDKs.
- The Custom HTTP tool — let your AI agent call your endpoints from inside a conversation. Already shipped.
- The Shopify integration — orders, products, tracking lookup. Already shipped.
- Outbound webhooks — push Keloa events to your stack. Already shipped.
The planned API shape
When the public API ships, expect:- Base URL —
https://api.keloa.ai/v1. - Auth — bearer tokens issued in Settings → API tokens, sent as
Authorization: Bearer keloa_.... - Tenancy — every token is scoped to a single workspace. Cross-workspace operations require multiple tokens.
- Rate limits — per-token, returned as
X-RateLimit-*headers; sensible defaults for SMB usage. - Format — JSON in/out, ISO-8601 timestamps in UTC, UUIDs for every resource.
- Pagination — cursor-based with a
next_cursorfield; no offset/limit. - Errors — standard
{ error: { code, message, ... } }envelope.
Resources we plan to expose
accounts(read-only — your workspace metadata).contacts— list, create, update, delete; merge.conversations— list, read, create message, resolve, reopen, set priority.messages— read, create on a conversation.agents— read, list (modification stays in the dashboard initially).knowledge_sources— list, create, delete; trigger re-ingest.tags— list, attach, detach.webhooks— already supported via the in-app UI; will be addressable via API too.
What’s stable today vs aspirational
| Surface | Status |
|---|---|
| Outbound webhook endpoints (managed in-app) | Live |
| Webhook signing (HMAC-SHA256) | Live |
| API tokens UI | Roadmap |
| Public REST API surface | Roadmap |
| Official SDKs | Roadmap |
Related
API tokens
Planned token management.
Webhooks
Outbound events Keloa will push.