ILLUSTRATIVE API GUIDE · NOT A LIVE ENDPOINTOne integration shape.
Verified routes later.
This guide previews the intended interface. API credentials, models, limits, streaming and failover are enabled only after route qualification and written commercial approval.
REQUEST SHAPEOpenAI-compatible by design
The intended interface uses bearer authentication and a declared lane header. The hostname below is illustrative and must not be used for production traffic.
- Portal sign-in
- Workspace identity only; not API authentication
- Authentication
- Bearer key issued after qualification
- Lane selection
- X-Computavia-Lane
- Models
- Allowlisted in the final route schedule
- Rate limits
- Defined in the written capacity schedule
- Errors
- Standard HTTP status plus request identifier
ILLUSTRATIVE · NOT ACTIVEPOST /v1/chat/completions
curl https://api.computavia.com/v1/chat/completions \ -H "Authorization: Bearer $COMPUTAVIA_KEY" \ -H "X-Computavia-Lane: us-protected" \ -H "Content-Type: application/json" \ -d '{
"model": "qualified-model-alias",
"messages": [{"role":"user","content":"Hello"}]
}'