2026-06-15: Public Pricing Endpoint
The new /v1/public/pricing endpoint returns headline-only rates without authentication.
GET /v1/public/pricing is now available. It returns headline-only per-minute rates for voice calls with no authentication required.
A new unauthenticated endpoint has been added to the public API surface:
GET https://api.sautikit.com/v1/public/pricing
Response shape:
{
"currency": "KES",
"rates": [
{ "direction": "outbound", "destination": "KE-mobile", "per_minute": 2.50 },
{ "direction": "outbound", "destination": "KE-landline", "per_minute": 1.80 },
{ "direction": "inbound", "destination": "KE-mobile", "per_minute": 0.00 }
],
"updated_at": "2026-06-15T00:00:00Z"
}The endpoint returns headline rates only: the top-level rates that apply to standard workspaces. Custom contracted rates, volume tiers, and per-workspace overrides are not reflected here.
Developers need to display indicative pricing in their own UIs (quoting screens, cost estimators) without proxying an authenticated call through their backend. This endpoint is safe to call from the browser.
None. The endpoint is additive and requires no changes to existing integrations.