Routify API

Routify is an OpenAI-compatible API gateway that routes requests to multiple LLM providers with usage tracking and billing.

Base URL

  • https://api.routify.ru

Quick Example

$curl -s https://api.routify.ru/v1/chat/completions \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "model": "gpt-5.2",
> "messages": [{"role":"user","content":"Say hello"}]
> }'