Introduction

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

  1. Sign up at console.mixlayer.com and grab an API key.
  2. Walk through the Quickstart to make your first request.
  3. Browse the Models catalog to pick the right model for your workload.
  4. Read the Chat Completions reference for every supported parameter.

Guides