InferX Endpoints
Access production-ready open models through OpenAI-compatible APIs. InferX manages the infrastructure, scaling, and runtime.
- Start with an API key
- Pay per token
- No infrastructure to manage
Run AI models in production without paying for idle GPUs.
A request enters the OpenAI-compatible API, the scheduler restores initialized model state, GPU capacity attaches while tokens stream, and resources return to the pool when serving completes.
Prompts, outputs, and API payloads are not stored or used for training.
Requests and responses are protected with modern transport encryption.
In progress, targeted for Q3 2026.
Readiness targeted for Q3 2026.
Start with hosted endpoints, or deploy more models from the InferX catalog.
DeepSeek
Cached input supported.
Use endpointDeepSeek
Cached input supported.
Xiaomi
Cached input supported.
Use endpointZhipu AI
Cached input supported.
Use endpointMoonshot AI
SHORTER STARTUP PATH
Inside the InferX Runtime
A request enters the OpenAI-compatible API, the scheduler restores initialized model state, GPU capacity attaches while tokens stream, and resources return to the pool when serving completes.
OpenAI compatible
Keep the OpenAI Python SDK and request shape. Point your existing client at InferX to serve open models in production.
Verified SDK compatibilityimport osfrom openai import OpenAIclient = OpenAI( api_key=os.environ["OPENAI_API_KEY"], base_url="https://model.inferx.net/v1",)stream = client.chat.completions.create( model="Qwen/Qwen3.6-35B-A3B", messages=[{"role": "user", "content": "Hello, InferX."}], stream=True,)for chunk in stream: print(chunk.choices[0].delta.content or "", end="")