Docs

Quickstart

Updated 2026-07-21

This documentation covers integration with live models: set up your account and API key, then develop using API capabilities or specific model pages.

1. Create an account

Open the console sign-up page to complete registration and log in.

2. Create an API key

Create an API key in the console and store it securely. Keys are typically shown in full only once.

3. Configure the Base URL

Model calls use the API domain, not the marketing site domain:

export OPENAI_BASE_URL="https://api.rokoapi.com/v1"
export OPENAI_API_KEY="sk-..."

For more details, see Base URL.

4. Make your first request

Replace model with a live model ID from the Live Model Development Guide or Model List:

curl https://api.rokoapi.com/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-flash",
    "messages": [{"role":"user","content":"Hello"}]
  }'

Next steps