Claude-native
Claude Code setup
Configure Claude Code-style workflows to use Modelane as the Claude-compatible API endpoint.
Developer docs
Modelane exposes a unified inference endpoint at https://api.modelane.ai/v1. Use one key, one balance, and one routing console across frontier model workflows.
Claude-native
Configure Claude Code-style workflows to use Modelane as the Claude-compatible API endpoint.
OpenAI-compatible
Use Modelane with OpenAI-compatible coding tools by setting one API key and base URL.
Gemini-compatible
Configure Gemini-oriented workflows with Modelane routing and a stable key management path.
This is the shortest path for SDKs and CLIs that support a custom OpenAI base URL.
export MODELANE_API_KEY="ml_..."
python - <<'PY'
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["MODELANE_API_KEY"],
base_url="https://api.modelane.ai/v1",
)
response = client.chat.completions.create(
model="modelane-fast",
messages=[{"role": "user", "content": "Hello, Modelane."}],
)
print(response.choices[0].message.content)
PY