Skip to content

GoodVision AI GatewayOne API Key for all major AI models

Claude · GPT · Gemini · Qwen · DeepSeek · Hunyuan ··· all unified under an OpenAI-compatible interface

What can I use it for?

Three typical use cases

  • Replace multiple SaaS APIs: Switch existing OpenAI / Anthropic / Google calls to https://ai.goodvision.tech/v1 and consolidate accounts and billing.
  • Power clients like Claude Code, Cherry Studio, Lobe Chat: Enter the GoodVision base URL + Key in your tool's settings and start using it immediately.
  • Enterprise internal AI platform: Issue independent keys and quotas per team/project, with unified auditing and billing.

Connection Info

Base URL (OpenAI-compatible):    https://ai.goodvision.tech/v1
Base URL (Anthropic-compatible): https://ai.goodvision.tech
API Key:                         sk-xxxxxxxx (contact your administrator)

30-Second Quickstart

python
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.

© GoodVision AI Gateway · One API Key for all major AI models