Skip to content

0 models live

Every frontier model.One base URL.

Claude, GPT, Gemini, Grok, DeepSeek, Kimi and GLM through OpenAI, Anthropic and Gemini compatible APIs. Pay per token at published prices. ORYNX never stores your prompts.

Base URL
https://api.orynx.dev/v1

Works with the tools you already use

Each one links to a tested setup guide.

One key for four API formats

Call any model through OpenAI Chat, OpenAI Responses, Anthropic Messages or the native Gemini API, with the SDK you already use. The key and base URL stay the same, and streaming works in all four.

POST/v1/chat/completions
Request
curl https://api.orynx.dev/v1/chat/completions \-H "Authorization: Bearer $ORYNX_API_KEY" \-H "Content-Type: application/json" \-d '{"model": "kimi-k3","messages": [{ "role": "user", "content": "What does an API gateway do?" }]}'
Response
{
  "model": "kimi-k3",
  "choices": [{ "message": { "content": "It gives your services one front door that checks keys and forwards each request." }, "finish_reason": "stop" }],
  "usage": { "prompt_tokens": 14, "completion_tokens": 16 }
}
0 ms14 tokens
Models
0
Families
0
API formats
4
Chat, Responses, Messages, Gemini
Families available
0/0
Uptime follows the first checks.

What ORYNX does

It forwards each request to the model you choose and bills it per token at the published price.

One API for every family

Call Claude, GPT, Gemini, Grok, DeepSeek, Kimi and GLM with the SDKs you already use. Switch models by changing the model id.

Your prompts are not stored

ORYNX keeps request metadata for billing: model, token counts, cost, timing. Prompts and completions pass through and are never written to disk or logs.

Stored
model, tokens, cost, latency, status
Never stored
prompt, completion, files, images

Published per-token prices

Every price is published per 1M tokens, including cache reads and writes and any long-context or peak-hour tiers. You pay exactly the listed rate.

    Check your key anytime

    Key lookup shows remaining credit, expiry, token totals and recent requests. No account or password needed.

    Long streams stay open

    If a model pauses to reason, ORYNX sends a heartbeat after 15 seconds of silence, so proxies and clients don't drop the connection.

    Three steps to your first request

    1. 1

      Get a key

      One key with its own credit, expiry and models.

    2. 2

      Set the base URL

      Point your SDK or app at ORYNX.

    3. 3

      Build

      Send requests and track spend in Key lookup.

    main.py
    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["ORYNX_API_KEY"],
        base_url="https://api.orynx.dev/v1",
    )
    
    reply = client.chat.completions.create(
        model="claude-sonnet-5",
        messages=[{"role": "user", "content": "Hello"}],
    )
    print(reply.choices[0].message.content)

    Common questions

    Is ORYNX compatible with the OpenAI and Anthropic SDKs?

    Yes. Use the official OpenAI, Anthropic and Google GenAI SDKs and change only the base URL and API key. Chat Completions, Responses, Messages and Gemini generateContent are all supported, with streaming.

    Do you store my prompts or responses?

    No. ORYNX stores request metadata only (model, token counts, cost, timing and status) so it can bill you and show usage. The upstream model providers process your requests and may keep data under their own policies; see the privacy policy.

    How is a request priced?

    Input, output and cached tokens are multiplied by the model's published price per 1M tokens. Some models charge more for very long prompts or at peak hours; those tiers are listed on every model page.

    What happens when my credit runs out or my key expires?

    Requests are refused with an error in your client's API format. A key's validity is counted in days from the day it was issued. Contact the person or team who issued your key to top it up or extend it.

    Can I use it with Claude Code, Codex or Cursor?

    Yes. The docs have tested configuration for Claude Code, Codex CLI, Cursor, OpenCode, OpenClaw, Hermes Agent, Cline, Kilo Code, Continue, Cherry Studio and more.

    How do I check my balance?

    Open Key lookup and paste your key. Apps that read OpenAI-style billing endpoints, such as NextChat, can also show your credit and expiry.

    Pick a model and send your first request

    Browse live prices or follow a guide for your favourite tool.