ORYNX

Base URLs

The right base URL for each API format, SDK and tool.

OpenAI Chathttps://api.orynx.dev/v1OpenAI SDK, LangChain, Cursor, Cline
OpenAI Responseshttps://api.orynx.dev/v1OpenAI SDK, Codex CLI
Anthropic Messageshttps://api.orynx.devAnthropic SDK, Claude Code
Geminihttps://api.orynx.devGoogle GenAI SDK

The rule

  • OpenAI format (Chat Completions and Responses): https://api.orynx.dev/v1
  • Anthropic format: https://api.orynx.dev, the host only. The Anthropic SDKs and Claude Code add /v1/messages.
  • Gemini format: https://api.orynx.dev, the host only. The Google GenAI SDK adds /v1beta/models/....

Exceptions

These clients expect the version path in the base URL:

ClientFormatBase URL
Vercel AI SDK (@ai-sdk/anthropic), OpenCodeAnthropichttps://api.orynx.dev/v1
Continue (provider: anthropic)Anthropichttps://api.orynx.dev/v1/
Vercel AI SDK (@ai-sdk/google)Geminihttps://api.orynx.dev/v1beta

OpenClaw (api: "anthropic-messages") and Cherry Studio (every provider type) follow the rule: enter the host only, https://api.orynx.dev.

Wrong path

ORYNX answers an unknown path with 404 and the message Unknown endpoint. Check the URL the client called: /v1/v1/messages means you should remove /v1 from its base URL, and /messages without /v1 means you should add it.

On this page