One Key, All Models
No more separate accounts for OpenAI, Anthropic, and Google. One GoodVision API Key gives you access to 18+ providers and 100+ models.
Claude · GPT · Gemini · Qwen · DeepSeek · Hunyuan ··· all unified under an OpenAI-compatible interface
Three typical use cases
https://ai.goodvision.tech/v1 and consolidate accounts and billing.Base URL (OpenAI-compatible): https://ai.goodvision.tech/v1
Base URL (Anthropic-compatible): https://ai.goodvision.tech
API Key: sk-xxxxxxxx (contact your administrator)from openai import OpenAI
client = OpenAI(
api_key="sk-your-key",
base_url="https://ai.goodvision.tech/v1",
)
resp = client.chat.completions.create(
model="claude-sonnet-4-6", # Switch to GPT/Gemini by changing only this line
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)See the full example in Quick Start.