Quickstart
📸 Image tutorial coming soon
A detailed image tutorial is being prepared and will be published shortly. Below is a text quickstart for now.
1. Get an API key
- Open the API Console
- After signing up / in, create an API key on the "Tokens" page
- Copy and store it securely (a key is usually shown in full only once)
2. Set the Base URL
All requests point to:
https://llmapi.cttai.art/v1
3. Verify connectivity with curl
export CTTAI_API_KEY=sk-your-key
curl https://llmapi.cttai.art/v1/chat/completions \
-H "Authorization: Bearer $CTTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{"role": "user", "content": "Hi, introduce yourself in one sentence"}
]
}'
If you see a normal reply, you are connected.
4. Choose how to integrate
- Use a client / tool: see Tool Integration
- Write your own code: see API Quickstart
- Judgement model (Jev): see Jev Model Integration