One API, 70+ AI Models

OpenAI-compatible gateway to Claude, GPT, Gemini, DeepSeek, Qwen, and more. Drop-in replacement — just change the base URL.

https://api.wayway.dev/v1

Get Started

Request API access. We'll set up your account and send you an API key.

Thanks! We'll send your API key to your email shortly.
📦

70+ Models

Access Anthropic Claude, OpenAI GPT, Google Gemini, DeepSeek, Qwen, GLM, Grok, and more through a single API endpoint.

🔌

OpenAI Compatible

Works with any OpenAI SDK or tool. Just change base_url and api_key. No code changes needed.

💰

Pay Per Token

No subscriptions, no minimums, no commitments. Transparent per-token pricing. Only pay for what you use.

Pricing

All prices in USD per 1 million tokens. Models are loaded live from our API.

Model Input / 1M Output / 1M Context
Loading models...

Quick Start

Get started in under a minute. Compatible with any OpenAI SDK.

Python
cURL
Node.js
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);

FAQ

What models are supported?
We support 70+ models from Anthropic (Claude), OpenAI (GPT, o-series), Google (Gemini), DeepSeek, Qwen, xAI (Grok), Zhipu (GLM), MiniMax, and Moonshot (Kimi). See the pricing table above for the full list.
How does pricing work?
You pay per token with no minimums or subscriptions. Input and output tokens are priced separately per model. Prices are listed per 1 million tokens. Your balance is deducted automatically after each API call.
Is it compatible with the OpenAI SDK?
Yes, fully compatible. Just set 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.
How do I get an API key?
Fill out the form above and we'll set up your account with an API key and initial credits. Keys start with sk-nex- and work immediately once activated.
What about rate limits?
Default rate limit is 100 requests per minute per API key. Higher limits are available on request. There are no platform-level concurrency restrictions.
Do you support streaming?
Yes, set "stream": true in your request body to receive Server-Sent Events (SSE) streaming responses, just like the OpenAI API.