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

# Getting Started

> Learn what Routify is and how to authenticate with the API.

## What is Routify?

Routify is a unified API gateway that provides OpenAI-compatible access to multiple LLM providers — with usage tracking, billing, and smart routing.

## Base URL

```
https://api.routify.ru
```

## Authentication

All API requests require a Bearer token in the `Authorization` header.

```bash theme={null}
Authorization: Bearer $ROUTIFY_API_KEY
```

### Example

```bash theme={null}
curl https://api.routify.ru/v1/models \
  -H "Authorization: Bearer $ROUTIFY_API_KEY"
```

## Supported Endpoints

| Endpoint                    | Description                        |
| --------------------------- | ---------------------------------- |
| `POST /v1/chat/completions` | OpenAI-compatible chat completions |
| `POST /v1/responses`        | Native OpenAI Responses API proxy  |
| `GET /v1/models`            | List available models              |
| `GET /healthz`              | Health check                       |
