> ## Documentation Index
> Fetch the complete documentation index at: https://docs.routeway.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Routeway is a unified, OpenAI-compatible API gateway providing access to 200+ LLMs and image models.

Routeway is an API gateway that enables you to integrate and switch between 200+ AI models (including GPT-5.5, Claude Opus 4.8, Kimi K2.7, DeepSeek V4, Grok 4, and Gemini 3.1 Pro) using a single, unified, OpenAI-compatible API.

Because it is fully compatible with OpenAI, migrating your existing applications takes only a few minutes. See the [Migration Guide](/getting-started/migration) for step-by-step instructions.

Instead of managing multiple SDKs, credentials, and billing accounts, you only need one client configuration and one API key.

## Base URL

All API requests are routed through:

```http theme={null}
https://api.routeway.ai/v1
```

## Quick Example (cURL)

Test your connection with a standard Chat Completions request:

```bash theme={null}
curl https://api.routeway.ai/v1/chat/completions \
  -H "Authorization: Bearer $ROUTEWAY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kimi-k2.7-code",
    "messages": [
      {"role": "user", "content": "Say hello!"}
    ]
  }'
```

## Explore the Docs

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/getting-started/quickstart">
    Make your first API request with Python, Node.js, or cURL in under 2 minutes.
  </Card>

  <Card title="Migration Guide" icon="shuffle" href="/getting-started/migration">
    Migrate your existing OpenAI or Anthropic integration in a few minutes.
  </Card>

  <Card title="Authentication" icon="lock" href="/getting-started/authentication">
    Learn how to obtain and securely configure your Routeway API keys.
  </Card>

  <Card title="Models" icon="microchip" href="/getting-started/models">
    Browse the list of supported models, pricing, and routing paths.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/ChatCompletions/completions">
    Explore the full interactive endpoints for chat, images, and accounts.
  </Card>
</CardGroup>

## Guides

<CardGroup cols={2}>
  <Card title="Presets" icon="sliders-horizontal" href="/guides/chat-completions/presets">
    Bundle a model, system prompt, and parameters into a reusable ID.
  </Card>

  <Card title="Streaming" icon="radio" href="/guides/chat-completions/streaming">
    Receive tokens as they are generated for low-latency, real-time applications.
  </Card>

  <Card title="Tool Calling" icon="wrench" href="/guides/chat-completions/tool-calling">
    Let models invoke your functions to fetch live data and take actions.
  </Card>

  <Card title="Structured Outputs" icon="braces" href="/guides/chat-completions/structured-outputs">
    Force models to return valid JSON matching a schema you define.
  </Card>

  <Card title="Reasoning" icon="brain" href="/guides/chat-completions/reasoning">
    Use extended thinking models for hard problems that require deeper deliberation.
  </Card>

  <Card title="Multimodal Inputs" icon="image" href="/guides/chat-completions/multimodal-inputs">
    Send images, PDFs, and documents alongside text in a single request.
  </Card>

  <Card title="Caching" icon="database" href="/guides/chat-completions/caching">
    Reduce costs and latency by reusing previously processed prompt tokens.
  </Card>
</CardGroup>
