Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.qingbo.dev/llms.txt

Use this file to discover all available pages before exploring further.

An OpenAI-compatible unified API endpoint. Call GPT-4o, Claude, Gemini, Sora, VEO, and other leading models with a single line of code. Just swap your base_url — no other changes required.
from openai import OpenAI

client = OpenAI(
    base_url="https://www.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 full range of AI models through QWave API.
text-generation

Text Generation

GPT-4o, Claude Sonnet, Gemini, and other leading LLMs with streaming support
image-generation

Image Generation

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

Video Generation

VEO3, Sora2, Kling, Hailuo, and other video generation models
audio

Audio Processing

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

Task Management

Track asynchronous task status and monitor image/video generation progress
openai-compatible

OpenAI Compatible

Fully compatible with the OpenAI SDK — just change the URL

Why QWave API

Zero-Cost Migration

OpenAI-compatible format — point your existing code at a new base_url and you’re done

Unified Model Access

One API key, every major model. Switch between providers via the model parameter

Async Task System

Image and video generation run as asynchronous tasks with real-time status and progress

Stable & Reliable

High-performance gateway with intelligent routing for dependable service

Quick Start

1

Get an API Key

Sign up and grab your API key at the Dashboard
2

Swap the Base URL

Point your OpenAI SDK at https://www.qingbo.dev/v1
3

Pick a Model and Call It

Specify the model you want via the model parameter and send your request