Introduction
Welcome! 👋
Mixlayer is an inference platform for open source AI models. We expose an OpenAI-compatible REST API, so you can drop Mixlayer into most existing applications by swapping the base URL and API key.
curl https://models.mixlayer.ai/v1/chat/completions \
-H "Authorization: Bearer $MIXLAYER_API_KEY" \
-d '{"model": "qwen/qwen3.5-4b-free", "messages": [...]}'Get started
- Sign up at console.mixlayer.com and grab an API key.
- Walk through the Quickstart to make your first request.
- Browse the Models catalog to pick the right model for your workload.
- Read the Chat Completions reference for every supported parameter.
Guides
- Client Libraries — Python, TypeScript, Rust, and curl examples
- Tool Calling — let the model invoke your functions
- Reasoning — read the model’s chain of thought