PublishedGuidanceLAST REVIEWED · 30 AUG 2026
REST client
Call MC-1 with ordinary HTTPS requests.
Responses request
curl $MC1_BASE_URL/responses \
-H "Authorization: Bearer $MC1_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "colomboai/mc-1",
"input": "Summarize the operational risk in three bullets."
}'Client rules
- Use server-side bearer authentication.
- Set JSON content type.
- Implement explicit timeout and cancellation.
- Parse structured error types, not only status text.
- Retain request and route identifiers without logging secrets.
Was this page helpful?