Developers
The shortest path from model to production.
One OpenAI-compatible interface for frontier models, dedicated endpoints, and infrastructure you control.
python
from openai import OpenAI
client = OpenAI(
base_url="https://api.inferx.com/v1",
api_key="ix_..."
)
response = client.chat.completions.create(
model="meta/llama-3.3-70b",
messages=[{"role": "user", "content": "Hello"}]
)Quickstart
Three steps. One endpoint.
- 01Create an API key
- 02Choose a model
- 03Send your first request
shell
# Install the SDK
pip install openai
# Point your existing client at InferX
export OPENAI_BASE_URL=https://api.inferx.com/v1
export OPENAI_API_KEY=ix_your_keyModels
Browse context windows, capabilities, and pricing.
SDKs
Python, TypeScript, and OpenAI-compatible clients.
API Reference
Complete schemas for every endpoint and event.
Playground
Compare models and prompts side by side.
Benchmarks
Latency, throughput, and efficiency data.
Examples
Patterns for agents, RAG, tools, and streaming.
