Models

Every model. One API. One wallet.

Anthropic, OpenAI, Google and more — reachable through a single OpenAI-compatible endpoint, billed from a single prepaid balance. Switch models by changing a string.

The providers developers actually ship with

  • Anthropic
  • OpenAI
  • Google
  • Meta
  • Mistral
  • Qwen
  • DeepSeek
Model families

The models you already build with

Claude

Bedrock · VertexOpus, Sonnet and Haiku — long context, vision and tools, on the provider of your choice.

GPT

Azure OpenAIGPT-4o, GPT-4 Turbo and the o-series reasoning models through one OpenAI-compatible endpoint.

Gemini

VertexGoogle's multimodal models, metered and observable alongside everything else you run.

Llama

via aggregatorsOpen-weight Llama models for when you want capability per dollar, with the same drop-in API.

Mistral

via aggregatorsFast, efficient European models — routed and billed through the same single wallet.

DeepSeek

OpenAI-compatibleFrontier reasoning at low cost, reachable with the exact same two-line integration.

Drop-in

Two lines to switch your stack

quickstart.py
from openai import OpenAI

client = OpenAI(
    base_url="https://api.wayjet.ai/v1",
    api_key="wj-...",
)

# Same code — any model, just change the string
resp = client.chat.completions.create(
    model="anthropic/claude-opus-4.7",
    messages=[{"role": "user", "content": "Hello"}],
)

Browse every model live

Sign in to see the full, up-to-date catalog in your dashboard — context windows, capabilities and pricing as providers release them.