What is OpenClaw?
OpenClaw is a personal AI assistant that runs locally on your machine (Mac, Windows, Linux). It can automate tasks, manage files, handle email and calendar, and supports extensions and plugins. OpenClaw is compatible with the OpenAI API, so you can point it at Routify to access any model from the catalog through a single gateway.Setup
Step 1: Get Your Routify API Key
- Sign up or log in at routify.ru
- Create a new API key
- Copy your key (starts with
sk-...)
Step 2: Add Routify as a Provider
Open~/.openclaw/openclaw.json and add Routify as a custom provider:
The API key is stored in the
env section and substituted via ${ROUTIFY_API_KEY}. Do not hardcode the key directly in apiKey.Step 3: Choose Your Default Model
Set your preferred model inagents.defaults.model.primary using the format routify/<model-id>:
Browse all available models at routify.ru/models.
Step 4: Launch OpenClaw
Adding Models
To add a new model, append an object to themodels array in your routify provider:
Reliability and Failover
Routify automatically routes requests across available providers. If a provider is unavailable, requests fail over to another upstream without changes to your OpenClaw configuration.Common Errors
Authentication errors (401/403)
Fix:- Verify your API key is valid at routify.ru/settings
- Check that you have sufficient balance
- Ensure your key hasn’t been revoked
Model not found (404)
Fix:- Verify the model ID in the Routify catalog
- Use the
<provider>/<model>format (e.g.,openai/gpt-5.4) - Make sure the model is listed in the
modelsarray of your provider config in OpenClaw