API Keys
All API requests require an API Key. You can generate one in your dashboard under Admin > API Keys.Using the SDK
The SDK handles authentication automatically:Raw HTTP Requests
Include the key in theAuthorization header:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to authenticate with the Client Commander API
import { ClientCommander } from '@clientcommander/sdk';
const cc = new ClientCommander({
apiKey: 'ccmd_live_...',
});
Authorization header:
Authorization: Bearer ccmd_live_...
curl -X GET https://api.clientcommander.com/v1/people \
-H "Authorization: Bearer ccmd_live_..."
