Chime REST API
The Chime API allows you to programmatically manage your workspace, retrieve call logs, monitor employee activity, and integrate our data seamlessly into your existing CRM or ERP systems.
BASE URL
https://api.chime.app/v1Authentication
The Chime API uses API keys to authenticate requests. You can view and manage your API keys in your Chime Dashboard under Settings > Developer.
Authentication to the API is performed via HTTP Bearer Auth. Provide your API key as the bearer token value.
cURL
curl -X GET https://api.chime.app/v1/workspaces \
-H "Authorization: Bearer sk_live_123456789"Core Endpoints
GET
/v1/callsReturns a paginated list of all synced call logs for the authenticated workspace.
Response (200 OK)
{
"object": "list",
"data": [
{
"id": "call_987654",
"type": "incoming",
"contact_name": "John Doe",
"phone_number": "+15551234567",
"duration_seconds": 345,
"timestamp": "2026-03-03T10:30:00Z",
"recording_url": "https://api.chime.app/v1/calls/audio/..."
}
],
"has_more": false
}