Skip to content
VAELICO

Docs

Connect your client.

Vaelico exposes a standard OpenAI-compatible API. Point your favorite roleplay or writing app at it with a base URL, a key and a model name — that's it.

Artemis is live in closed beta. Request an invite on the waitlist, then create your API key in the app — these guides take you the rest of the way. Open the app · Join the waitlist

Quickstart

https://api.vaelico.ai/v1
curl https://api.vaelico.ai/v1/chat/completions \
  -H "Authorization: Bearer $VAELICO_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "artemis",
    "messages": [
      { "role": "user", "content": "Open on a rain-soaked harbor at dawn." }
    ]
  }'

Bring your Vaelico API key. The same endpoint works in every client below.