OpenAI-compatible gateway to Claude, GPT, Gemini, DeepSeek, Qwen, and more. Drop-in replacement — just change the base URL.
Request API access. We'll set up your account and send you an API key.
Access Anthropic Claude, OpenAI GPT, Google Gemini, DeepSeek, Qwen, GLM, Grok, and more through a single API endpoint.
Works with any OpenAI SDK or tool. Just change base_url and api_key. No code changes needed.
No subscriptions, no minimums, no commitments. Transparent per-token pricing. Only pay for what you use.
All prices in USD per 1 million tokens. Models are loaded live from our API.
| Model | Input / 1M | Output / 1M | Context |
|---|---|---|---|
| Loading models... | |||
Get started in under a minute. Compatible with any OpenAI SDK.
from openai import OpenAI client = OpenAI( api_key="sk-nex-your-key", base_url="https://api.wayway.dev/v1" ) response = client.chat.completions.create( model="claude-sonnet-4-6", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
curl https://api.wayway.dev/v1/chat/completions \ -H "Authorization: Bearer sk-nex-your-key" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-5.4", "messages": [{"role": "user", "content": "Hello!"}] }'
import OpenAI from "openai"; const client = new OpenAI({ apiKey: "sk-nex-your-key", baseURL: "https://api.wayway.dev/v1", }); const response = await client.chat.completions.create({ model: "claude-sonnet-4-6", messages: [{ role: "user", content: "Hello!" }], }); console.log(response.choices[0].message.content);
base_url to https://api.wayway.dev/v1 and use your WayWay API key. Works with Python, Node.js, and any tool that supports the OpenAI API format.sk-nex- and work immediately once activated."stream": true in your request body to receive Server-Sent Events (SSE) streaming responses, just like the OpenAI API.