Dashboard

Today
0
Total Requests
0
Tokens
0
0Limit: —

Requests (7 days)

API Keys

No API keys yet. Create one to get started.

Payment History

Loading...

Integration

Base URL
https://mimo.lokerin.net/v1
API Key Format
cutad-xxxxxxxxxxxx...
python
from openai import OpenAI

client = OpenAI(
    api_key="cutad-YOUR_API_KEY",
    base_url="https://mimo.lokerin.net/v1"
)

response = client.chat.completions.create(
    model="cutad-agent-pro",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True
)

for chunk in response:
    print(chunk.choices[0].delta.content or "", end="")
bash
curl https://mimo.lokerin.net/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cutad-YOUR_API_KEY" \
  -d '{"model":"cutad-agent-pro","messages":[{"role":"user","content":"Hello!"}],"stream":true}'
javascript
const { OpenAI } = require("openai");

const client = new OpenAI({
  apiKey: "cutad-YOUR_API_KEY",
  baseURL: "https://mimo.lokerin.net/v1"
});

const res = await client.chat.completions.create({
  model: "cutad-agent-pro",
  messages: [{ role: "user", content: "Hello!" }],
  stream: true
});

for await (const chunk of res) {
  process.stdout.write(chunk.choices[0]?.delta?.content || "");
}