Quickstart

Switch your base URL and start routing.

Lowertoken keeps the OpenAI-compatible request shape. Create a key in the console, set the base URL, then choose a public model name from the route board.

Setup

1

Create a gateway key

Open the console, create an API token, and add a small prepaid balance before production use.

2

Point your client at Lowertoken

Use https://api.lowertoken.com/v1 as the base URL and keep the same chat completions format.

curl

curl https://api.lowertoken.com/v1/chat/completions \
  -H "Authorization: Bearer $LOWERTOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-flash-202605",
    "messages": [
      {"role": "user", "content": "Write a concise product launch checklist."}
    ]
  }'

Python

from openai import OpenAI

client = OpenAI(
    api_key="LOWERTOKEN_API_KEY",
    base_url="https://api.lowertoken.com/v1",
)

response = client.chat.completions.create(
    model="kimi-k2.7-code",
    messages=[{"role": "user", "content": "Summarize this customer interview."}],
)

print(response.choices[0].message.content)

Node

import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.LOWERTOKEN_API_KEY,
  baseURL: "https://api.lowertoken.com/v1",
});

const response = await client.chat.completions.create({
  model: "minimax-m3",
  messages: [{ role: "user", content: "Draft a short support reply." }],
});

console.log(response.choices[0].message.content);

Developer Tools

Any tool that accepts an OpenAI-compatible API base URL can usually route through Lowertoken.

Tool Base URL Model example Note
Claude Code compatible proxieshttps://api.lowertoken.com/v1kimi-k2.7-codeUse for low-cost coding experiments.
Clinehttps://api.lowertoken.com/v1deepseek-v4-flash-202605Set custom provider and model name.
Cherry Studiohttps://api.lowertoken.com/v1minimax-m3Good for quick route comparison.

Before production

Confirm the live route price in the console, review the Data Flow page, and set per-key usage limits before moving customer traffic.