Authentication
Caesar uses API keys for authentication. An API key is required to authenticate requests and enable integration with Caesar’s platform.
Get your API key at your dashboard.
Generate a Caesar API key
- Visit your dashboard.
- Create a new API key.
- Click Copy to copy the secret and save it securely. You will not be able to view it again.
Authenticate your requests
Send your API key as a Bearer token in the HTTP Authorization header on every request.
Example Request
JSON
Agent onboarding auth flow
For agent-first onboarding without a dashboard login, use:
POST /agents/authwith{ "email": "you@example.com" }POST /agents/auth/confirmwith{ "email": "you@example.com", "code": "123456" }
The confirm response includes a newly minted api_key secret you can use as a Bearer token.