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.
MONTHLY ACCESS
Beta offer: $10/month, includes $50 in usage credits.
Start with hosted endpoints, or deploy more models from the InferX catalog.
DeepSeek
Cached input supported.
Use endpointXiaomi
Cached input supported.
Use endpointZhipu AI
Cached input supported.
Use endpointMoonshot AI
HOW THE STARTUP PATH CHANGES
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="")