Skip to main content

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

  1. Open the API Console
  2. After signing up / in, create an API key on the "Tokens" page
  3. 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