OutCallerAI LogoOutCallerAI

Setup

Authenticate and start using the generated OutCallerAI public API reference.

The OutCallerAI API lets an existing CRM, operations system, or internal application manage the same core records your team uses in the dashboard. Use it to provision agents, synchronize leads, configure calling use cases, and read call outcomes without duplicating manual work.

Open the generated API Reference to browse every supported endpoint, request and response schema, code example, and the interactive playground.

API prefixes

PrefixPurposeAuthentication
/api/v1/publicWorkspace, agents, use cases, leads, callsBearer API key

API Key

Create and manage API keys from the OutCallerAI Integrations.

  • Visit the OutCallerAI dashboard subdomain
  • Select Integrations from the sidebar

API Key Step 1

  • Click Generate New Token

API Key Step 2

  • Enter a description for the key
  • Click Generate Token

API Key Step 3

  • The API key is shown only once — copy and store it securely
  • Click Copy Token to copy it to your clipboard

API Key Step 4

  • Manage keys from the Integrations page
  • Delete a key at any time to revoke access

Treat an API key like a password. Keep it in a server-side secret manager, send it only over HTTPS, and never place it in browser code, screenshots, support messages, source control, or a Postman shared initial value. Create separate keys for separate environments or integrations so each one can be revoked independently.

Headers

Authorization: Bearer <api-key>

Base URL

Production:

https://outcallerai.com

Example:

curl https://outcallerai.com/api/v1/public/workspace \
  -H "Authorization: Bearer <api-key>"

API reference

Authenticated REST API

Integration pattern

For a reliable CRM integration, keep the CRM as the owner of customer records and store OutCallerAI IDs alongside the corresponding CRM records.

  1. Create or select an agent, then store its agent_id in your integration configuration.
  2. Create leads under that agent and retain each returned lead ID.
  3. Read calls for the agent to synchronize status, transcript, summary, duration, and outcome data.
  4. Make retries idempotent in your own worker: record successful IDs before retrying a batch, and do not blindly recreate records after a timeout.
  5. Treat 401 as an invalid or revoked key, 403 as a workspace entitlement or policy restriction, 404 as an ID outside the authenticated workspace, and 422 as invalid request data.

The interactive playground sends requests through the OutCallerAI docs server so the key is never embedded in client-side source. The key remains in memory only while the playground is open and is cleared when it closes, navigates, or unloads. For production integrations, make requests from your own backend rather than from a public browser session.

How is this guide?