Overview
Access everything Circleback captures from your meetings with the Circleback API: notes, action items, transcripts, recordings, people, companies, and more.
The Circleback API lets you read your meetings, notes, action items, transcripts, people, and companies. Use it to sync meeting data into your own tools, build automations, or search across your conversations.
Authentication
Send your API key as a bearer token in the Authorization header of every
request:
curl https://circleback.ai/api/meetings \
-H "Authorization: Bearer cb_<secret>"Get an API key
To get started, go to Settings → API keys in Circleback and create an API key.
Keys look like cb_<secret> and are shown once at creation, so store
yours somewhere safe.
Base URL
https://circleback.ai/apiThe API accepts and returns JSON.
Pagination
List endpoints return one page of results at a time. Omit cursor from the
first request. When another page is available, the response includes an RFC
8288 Link header with rel="next":
Link: </api/meetings?cursor=eyJwYWdlIjoxfQ>; rel="next"Follow that URL to request the next page. Cursors are opaque and should not be modified or reused with different filters.
Explore the reference
Endpoints are grouped by resource in the sidebar: Meetings, Action items, Calendar, Companies, People, and Tags. Every page documents the request and response shapes and lets you try the endpoint with your API key.