Skip to main content
An OpenAI-compatible unified API endpoint to call GPT-4o, Claude, Gemini, Sora, VEO, and other leading models with a single line of code. Simply replace the base_url — no changes to your existing code required.
from openai import OpenAI

client = OpenAI(
    base_url="https://qingbo.dev/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)

AI Model Capabilities

Access a wide range of AI models through WaveAPI.
text-generation

Text Generation

Leading LLMs including GPT-4o, Claude Sonnet, and Gemini with streaming support
image-generation

Image Generation

Image generation models including GPT-4o Image, FLUX Kontext, and Seedream
video-generation

Video Generation

Video generation models including VEO3, Sora2, Kling, and Hailuo
audio

Audio Processing

Whisper speech recognition and TTS text-to-speech
task-management

Task Management

Async task status queries to track image and video generation progress
openai-compatible

OpenAI Compatible

Fully compatible with the OpenAI SDK — just change the URL to get started

Why WaveAPI

Zero-Cost Migration

Compatible with the OpenAI API format — simply change the base_url in your existing code

Multi-Model Aggregation

Access all major AI models with a single API key, and switch flexibly via the model parameter

Async Task System

Image and video generation support async processing with real-time task status and progress tracking

Stable & Reliable

High-performance API gateway with intelligent routing to ensure service reliability

Quick Start

1

Get an API Key

Go to the Dashboard to sign up and obtain your API key
2

Replace the Base URL

Replace the base URL in your OpenAI SDK with https://qingbo.dev/v1
3

Choose a Model and Make a Request

Specify the desired model via the model parameter and send your request