Freebuff Control Gate

Enter your API key or dashboard password to access metrics, accounts, and playground.

F

Freebuff

OpenAI-Compatible Gateway edge
Accounts
Loading pool status...
Requests Today
ok · fail · rate-limited
Success Rate
last 24h
Failover
Sticky
Auto on rate-limit

Traffic (24h)

ok rate-limit fail

Pool Health

Quota by Model

Loading quota...

Models

Loading models...

Accounts & Cooldowns

Add Token

Get New Token

Generate an auth link, log in, and the token is added automatically.

Are you sure?

This action cannot be undone.

Token Health & Usage

Per-account request counters, errors, and ban status.
Loading usage...

Rate Limit & IP Access

Per-IP limit, blacklist & whitelist — managed from here.
Loading config...

Playground

Recent Gateway Requests

0 logged
Status Time Model Format Preview
No requests logged yet.

Endpoint

https://.../v1 Drop-in replacement for api.openai.com/v1
Python
from openai import OpenAI

client = OpenAI(
    base_url="BASE_URL_PLACEHOLDER",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="deepseek/deepseek-v4-flash",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
cURL
curl -X POST BASE_URL_PLACEHOLDER/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-api-key" \
  -d '{
    "model": "deepseek/deepseek-v4-flash",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
TypeScript
import OpenAI from "openai";

const openai = new OpenAI({
  baseURL: "BASE_URL_PLACEHOLDER",
  apiKey: "your-api-key",
});

const res = await openai.chat.completions.create({
  model: "deepseek/deepseek-v4-flash",
  messages: [{ role: "user", content: "Hello!" }],
});
console.log(res.choices[0].message.content);
Requests
import requests

resp = requests.post(
    "BASE_URL_PLACEHOLDER/chat/completions",
    headers={"Authorization": "Bearer your-api-key"},
    json={
        "model": "deepseek/deepseek-v4-flash",
        "messages": [{"role": "user", "content": "Hello!"}]
    }
)
print(resp.json()["choices"][0]["message"]["content"])