OpenAI-compatible
Same request and response shapes as /v1/chat/completions. Existing SDKs and tools work unchanged.
Inferlane is an OpenAI-compatible inference API. There is no price list, no credits and no card. The only cost is simple: the data you send is used for AI training.
Instead of charging per token, Inferlane keeps every model free for everyone. In exchange, the prompts and completions you send through the API are used as training data for AI models. That's the whole arrangement — no hidden tiers, no upsells.
Every model is free. The only cost being: the data you send will be used for AI training. Don't send anything you wouldn't want a model to learn from.
Point your existing OpenAI client at a new base URL, paste in your key, and keep shipping.
Same request and response shapes as /v1/chat/completions. Existing SDKs and tools work unchanged.
No per-model pricing, no premium tier. Anything listed in /v1/models is available to every account.
Set stream: true and receive server-sent events token by token, exactly like upstream.
Your dashboard holds exactly one thing: your API key. Rotate it any time. No usage graphs, no quotas to watch.
Change the base_url and the key. Everything else in your code stays where it is.
Grab your key from the dashboard after signing up.
from openai import OpenAI
client = OpenAI(
base_url="https://inferlane/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="openai/gpt-oss-120b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://inferlane/v1",
apiKey: "YOUR_API_KEY",
});
const response = await client.chat.completions.create({
model: "openai/gpt-oss-120b",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);
curl https://inferlane/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-oss-120b",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Live from /v1/models. Click any model to copy its ID.
Username, password, done. Every model unlocked.
Create a free account