Developer Preview
The Chameleon Eye API structures shown here describe the planned API. Production access is not yet generally available.
Build with Chameleon Eye AI
Authenticated API for embedding structured private intelligence into approved products and business systems.
Quick Start
Get up and running with Chameleon Eye API in four steps.
Request API access
Submit a request via /contact. API access is approved for business and partner use cases.
Receive credentials
You will receive scoped API credentials after approval. Keys follow the che_live_ format.
Make your first request
POST to /api/v1/risk/check with your workspace_id and approved_text payload.
Handle the response
Parse the structured intelligence response containing risk_level, answer, and mode fields.
Authentication Example
A sample authenticated POST request to the risk analysis endpoint.
Request
curl -X POST https://chameleoneye.ai/api/v1/risk/check \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workspace_id": "ws_demo123",
"content_type": "business_summary",
"approved_text": "Q3 revenue declined 12% vs Q2. Two enterprise contracts pending renewal."
}'Response
{
"task_type": "risk_review",
"risk_level": "medium",
"answer": "Three operational signals identified...",
"mode": "deep_strategy",
"created_at": "2026-07-15T10:00:00Z"
}Planned Core Endpoints
Endpoint structures planned for the Chameleon Eye API v1.
Error Codes
Standard error codes returned by Chameleon Eye API.
| Code | HTTP Status | Meaning |
|---|---|---|
| unauthorized | 401 | Missing or invalid API key |
| forbidden | 403 | Insufficient plan permissions |
| consent_required | 409 | User approval needed before cloud processing |
| privacy_route_unavailable | 423 | Required ZDR route unavailable |
| rate_limited | 429 | Request rate limit exceeded — retry after N seconds |
| internal_error | 500 | Server error — contact support if persistent |
Data Handling
How the Chameleon Eye API handles submitted content.
Chameleon Eye API never accepts raw full archive uploads, local file dumps, or automated full document library transfers. Only approved payloads are processed. In Offline Local Mode, no third-party AI API is contacted.
Key Security Notes
Practices required for all API integrations.
Documentation
Explore the full Chameleon Eye developer documentation.
