API Gateway

One Endpoint.
Every Model.

OpenAI-compatible API for AI models. Get your key, pick a model, start building in minutes.

Terminal
$ |
0
AI Models
99.9%
Uptime
<200ms
Latency
OpenAI
Compatible
Why Cutad

Built for developers

Everything you need to integrate AI into your application, nothing you don't.

Drop-in Replacement

Works with any OpenAI SDK. Change the base URL and API key, nothing else.

Rate Limiting

Built-in per-key rate limits with Retry-After headers. Fair usage, automatically enforced.

Streaming Support

Server-Sent Events streaming out of the box. Real-time token delivery.

API Key Auth

Each user gets unique keys. Create, rotate, and revoke from the dashboard.

Models

Choose your model

Two tiers, same API. Pick based on your task complexity.

cutad-agent

General-purpose AI agent. Fast responses for everyday tasks, chat, and content generation.

Rate limit15 req/min
StreamingYes
Best forGeneral tasks
model: "cutad-agent"
Quick Start

Up and running in 3 steps

1

Get your API key

Create a free account and generate an API key from your dashboard.

Create account →
2

Pick a model

Choose cutad-agent for general tasks or cutad-agent-pro for production.

3

Make your first call

Use any OpenAI-compatible SDK or plain HTTP. That's it.

bash
curl https://mimo.lokerin.net/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cutad-YOUR_KEY" \
  -d '{
    "model": "cutad-agent",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ],
    "stream": true
  }'
python
from openai import OpenAI

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

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

for chunk in response:
    print(chunk.choices[0].delta.content or "", end="")
javascript
const response = await fetch(
  "https://mimo.lokerin.net/v1/chat/completions",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "Authorization": "Bearer cutad-YOUR_KEY"
    },
    body: JSON.stringify({
      model: "cutad-agent",
      messages: [{ role: "user", content: "Hello!" }],
      stream: true
    })
  }
);
API Reference

Endpoints

EndpointMethodDescription
/v1/chat/completions POST Create a chat completion
/v1/models GET List available models

Ready to build?

Get your API key and start making requests in under 5 minutes.

Create Free Account