Skip to content

Integrations

Most integrations need the same three values:

text
Base URL: https://api.rout.my/v1
API key:  sk_your_key_here
Model:    openai/gpt-5.4

That base URL is for OpenAI-compatible clients. Anthropic-native clients such as Claude Code and the Anthropic SDK usually want https://api.rout.my as the configured base URL because they append /v1/messages themselves.

Use these defaults unless you intentionally need another model:

Client typeBase URLModel
OpenAI-compatible clientshttps://api.rout.my/v1openai/gpt-5.4
Codexhttps://api.rout.my/v1openai/gpt-5.4
Claude Code / Anthropic SDKhttps://api.rout.myanthropic/claude-sonnet-4.6

Use GET /v1/models with your key only when you want to replace the default with another exact model ID.

Quick Check

bash
curl https://api.rout.my/v1/models \
  -H "Authorization: Bearer $ROUTMY_API_KEY"

If the app can set a base URL and send a bearer token, it can usually talk to rout.my.

API documentation for rout.my.