Loading your account…
Dashboard
Hi, there
Your API key is the only thing here. No usage stats, no quotas — every model is free.
Your account is ready. Copy your key below and start sending requests.
API key
Send it as Authorization: Bearer <key>. Anyone with this key can use the API as you, so keep it out of public repositories.
••••••••••••••••••••••••••••••••••••••••••••••••••••••
Rotating invalidates the current key immediately.
Quick test
Paste this in a terminal to verify your key works.
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!"}]}'
from openai import OpenAI
client = OpenAI(base_url="https://inferlane/v1", api_key="YOUR_API_KEY")
r = client.chat.completions.create(model="openai/gpt-oss-120b", messages=[{"role": "user", "content": "Hello!"}])
print(r.choices[0].message.content)
Change password
Other signed-in sessions will be signed out.
Delete account
Removes your account and API key permanently. Data already sent through the API has already been used for training and is not affected.
