Skip to main content

API Keys

All API requests require an API Key. You can generate one in your dashboard under Admin > API Keys.
Your API Key carries the same privileges as your user account. Keep it secure and never share it publicly.

Using the SDK

The SDK handles authentication automatically:
import { ClientCommander } from '@clientcommander/sdk';

const cc = new ClientCommander({
  apiKey: 'ccmd_live_...',
});

Raw HTTP Requests

Include the key in the Authorization header:
Authorization: Bearer ccmd_live_...
Example request:
curl -X GET https://api.clientcommander.com/v1/people \
  -H "Authorization: Bearer ccmd_live_..."