Skip to main content

Burki REST API — Introduction

The Burki Voice AI API allows you to programmatically manage assistants, calls, and other resources in your organization. You can use it to build powerful integrations and automate your voice AI workflows. This API is built on REST principles and uses standard HTTP response codes and authentication. All API responses are returned in JSON format.

Base URL

All API requests should be made to:

Authentication

Most API endpoints accept a bearer token in the Authorization header:
  • API key (recommended for server-to-server integrations)
  • JWT access token (for user-authenticated app sessions)
Many dashboard-backed endpoints also support session auth when used from the web app, but external integrations should use API keys. You can generate and manage API keys in your dashboard at burki.dev/dashboard.

Bearer Authentication Example

Treat your API keys like passwords! Do not share them publicly or commit them to version control.

Response Format

Responses are JSON, but shape varies by endpoint. Two common patterns:

Resource/List Responses

Error Response (FastAPI style)

Error Codes

Rate Limits

Rate limiting is endpoint-specific and can vary by auth type and environment configuration.
  • Expect 429 Too Many Requests when limits are exceeded.
  • Some endpoints include Retry-After in the response headers.
  • Build clients with retry/backoff for transient limit errors.
For critical workloads, contact Burki support for current limits and throughput planning.

Pagination

Most list endpoints use skip + limit pagination: Common paginated response shape:

Webhooks

Burki can send webhook notifications for various events. Configure webhooks in your dashboard under SettingsWebhooks. Current webhook payloads are sent as typed JSON messages:
  • Voice call lifecycle webhooks use message.type values such as:
    • status-update
    • end-of-call-report
  • SMS webhooks use top-level type such as:
    • sms_received
Always parse webhook payloads by their explicit type field instead of assuming dotted event names.

SDKs & Libraries

Official SDKs are available for Python, JavaScript/TypeScript, and Go:

SDK Overview

Compare SDKs and get started quickly

Python SDK

Full Python SDK documentation

JavaScript SDK

TypeScript-first SDK with full types

Go SDK

Idiomatic Go SDK with channels

Next Steps

Quickstart

Get started with Burki in 5 minutes

Assistants API

Create and manage AI assistants