Version: August 18, 2026
export LOGICC_API_KEY="YOUR_LOGICC_API_KEY"
curl "https://api.logicc.cloud/v1/models" \
-H "Authorization: Bearer $LOGICC_API_KEY"
Use the returned id value exactly as the model value in subsequent requests.
curl -X POST "https://api.logicc.cloud/v1/chat/completions" \
-H "Authorization: Bearer $LOGICC_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-mini",
"messages": [
{"role": "system", "content": "You are a helpful business assistant."},
{"role": "user", "content": "Summarize the key risks in this project."}
]
}'
GET /v1/models.