Korvexor
Get started

Quickstart

Follow these steps to register, create a key, and send your first API request.

  1. Open the console and register or sign in

    Go to https://console.korvexor.cn to create a Korvexor account or sign in to an existing one.

  2. Create an API key

    In the console API Keys page, create a key and copy it somewhere safe (this portal never shows real keys).

  1. Pick a client or copy cURL

    Configure your AI client, or copy the cURL command below—replace the example key with yours before running.

    OpenAI-compatible chat completions:

    curl -sS https://api.korvexor.com/v1/chat/completions \
      -H "Authorization: Bearer sk-your-api-key" \
      -H "Content-Type: application/json" \
      -d '{"model":"auto","messages":[{"role":"user","content":"ping"}]}'
    

Next steps

Continue with your tool’s setup page, or browse more cURL examples.