120+ leading models integrated—new models live on day one

Satu endpoint,

Satu endpoint untuk mengakses OpenAI, Claude, Gemini, dan model terkemuka lainnya. Cepat, andal, latensi rendah, bayar sesuai pemakaian.

quickstart.py · OpenAI-compatible
from openai import OpenAI

client = OpenAI(
    base_url="https://www.vortapapi.com/v1",
    api_key="sk-xxxxxxxx",
)

resp = client.chat.completions.create(
    model="claude-opus-4.8",
    messages=[{"role": "user", "content": "Hai, ceritakan tentang dirimu"}],
)
print(resp.choices[0].message.content)

Andal, privat, dan bayar sesuai pemakaian

From privacy to networking to billing — the three usual roadblocks to shipping with LLMs, cleared.

Kode dan kunci tidak disimpan

Requests are forwarded over encrypted channels. Vortap never stores your code, API keys, or private data.

Rute Singapura yang dioptimalkan

Network paths tuned for access from mainland China — fewer failed connections and shorter time-to-first-token.

Bayar dalam CNY, gunakan sesuai kebutuhan

Flexible top-ups and usage-based billing — built for solo developers, small teams, and internal tools.

Satu baris konfigurasi, migrasi tanpa hambatan

Just swap the Base URL to use Vortap right inside Claude Code and similar tools.

Terminal · Claude Code
# Vortap · Claude Code setup
export ANTHROPIC_BASE_URL="https://www.vortapapi.com"
export ANTHROPIC_AUTH_TOKEN="sk-..."

# Start coding
claude

Harga transparan, pilihan Anda

No hidden fees — every cent goes into tokens.

Populer
Claude

Claude pay-as-you-go

1:1 (RMB:USD)

No subscription — billed flexibly by actual usage.

  • 1 RMB = 1 USD, synced to official pricing
  • All Claude models supported
  • Optimized for Claude Code
  • Personal & team groups
Mulai sekarang
Populer
OpenAI

GPT pay-as-you-go

1:1 (RMB:USD)

No subscription — billed flexibly by actual usage.

  • 1 RMB = 1 USD, synced to official pricing
  • All OpenAI GPT models supported
  • Optimized for Codex
  • Personal & team groups
Mulai sekarang

Gateway yang dibuat untuk produksi

Dari integrasi hingga operasi produksi, setiap detail dirancang untuk developer dan tim.

Akses langsung yang cepat

BGP multi-jalur · Edge

Multi-line BGP and edge acceleration—no self-hosted proxy needed, smooth access to top models from anywhere.

200ms
Avg. first-token latency · 99.99% uptime

API terpadu

Kompatibel dengan OpenAI · Satu kunci

Fully OpenAI-compatible. One key calls every model—zero migration cost.

Python-SDK · OpenAI MODELS: 120+
client = OpenAI(
  base_url="https://www.vortapapi.com/v1",
  api_key="sk-****",
)

client.chat.completions.create(
  model="claude-opus-4.8",
  messages=[{"role": "user", "content": "Hi"}],
)

Keandalan enterprise

Hot standby + failover

Multi-provider hot standby and smart failover automatically reroute around outages, keeping you always online.

Pengukuran transparan

Harga resmi · Tanpa biaya tersembunyi

Billed at official list price with no hidden fees. A real-time usage dashboard makes every charge auditable.

Kunci dengan kontrol terperinci

Multi-kunci · Kuota · Daftar izin

Multiple keys, quota limits, model allowlists and call logs—secure, controllable team collaboration.

Selalu terdepan

Model baru sejak hari pertama

New models are integrated the day they launch, so you always run the latest and most capable AI.

Semua model utama dalam satu tempat

OpenAI, Anthropic, Google, DeepSeek, xAI… continuously integrated and updated.

Jelajahi semua model dan harga
OpenAI
GPT-4o
OpenAI
Flagship
OpenAI
GPT-4.1
OpenAI
Recommended
OpenAI
o3
OpenAI
Reasoning
Claude
Claude Opus 4
Anthropic
Flagship
Claude
Claude Sonnet 4
Anthropic
Recommended
Google
Gemini 2.5 Pro
Google
Long context
Google
Gemini 2.5 Flash
Google
Fast
DeepSeek
DeepSeek V3
DeepSeek
Value
DeepSeek
DeepSeek R1
DeepSeek
Reasoning
Grok
Grok 3
xAI
New
Qwen
Qwen Max
Qwen
Chinese
Meta
Llama 3.3
Meta
Open source
OpenAI
GPT-4o
OpenAI
Flagship
OpenAI
GPT-4.1
OpenAI
Recommended
OpenAI
o3
OpenAI
Reasoning
Claude
Claude Opus 4
Anthropic
Flagship
Claude
Claude Sonnet 4
Anthropic
Recommended
Google
Gemini 2.5 Pro
Google
Long context
Google
Gemini 2.5 Flash
Google
Fast
DeepSeek
DeepSeek V3
DeepSeek
Value
DeepSeek
DeepSeek R1
DeepSeek
Reasoning
Grok
Grok 3
xAI
New
Qwen
Qwen Max
Qwen
Chinese
Meta
Llama 3.3
Meta
Open source
Meta
Llama 3.3
Meta
Open source
Qwen
Qwen Max
Qwen
Chinese
Grok
Grok 3
xAI
New
DeepSeek
DeepSeek R1
DeepSeek
Reasoning
DeepSeek
DeepSeek V3
DeepSeek
Value
Google
Gemini 2.5 Flash
Google
Fast
Google
Gemini 2.5 Pro
Google
Long context
Claude
Claude Sonnet 4
Anthropic
Recommended
Claude
Claude Opus 4
Anthropic
Flagship
OpenAI
o3
OpenAI
Reasoning
OpenAI
GPT-4.1
OpenAI
Recommended
OpenAI
GPT-4o
OpenAI
Flagship
Meta
Llama 3.3
Meta
Open source
Qwen
Qwen Max
Qwen
Chinese
Grok
Grok 3
xAI
New
DeepSeek
DeepSeek R1
DeepSeek
Reasoning
DeepSeek
DeepSeek V3
DeepSeek
Value
Google
Gemini 2.5 Flash
Google
Fast
Google
Gemini 2.5 Pro
Google
Long context
Claude
Claude Sonnet 4
Anthropic
Recommended
Claude
Claude Opus 4
Anthropic
Flagship
OpenAI
o3
OpenAI
Reasoning
OpenAI
GPT-4.1
OpenAI
Recommended
OpenAI
GPT-4o
OpenAI
Flagship

Mulai dalam tiga langkah tanpa menulis ulang

  1. 1

    Daftar dan buat kunci API

    Log into the console, generate your key in one click—credits included on signup.

  2. 2

    Ganti base_url

    Point your OpenAI SDK base_url to our endpoint. Everything else stays the same.

  3. 3

    Panggil model apa pun

    Pick GPT, Claude, Gemini and more via the model parameter.

quickstart.py
from openai import OpenAI

client = OpenAI(
    base_url="https://www.vortapapi.com/v1",
    api_key="sk-xxxxxxxx",
)

resp = client.chat.completions.create(
    model="claude-opus-4.8",
    messages=[{"role": "user", "content": "Hai, ceritakan tentang dirimu"}],
)
print(resp.choices[0].message.content)

Masih punya pertanyaan?

What is an AI API gateway?

A gateway aggregates and forwards your requests to each provider’s official model API. With a single OpenAI-compatible endpoint and key, you can call OpenAI, Claude, Gemini and more—fast and reliably—without self-hosted proxies or juggling multiple accounts.

How do I integrate? Do I need code changes?

Almost zero cost. We are fully OpenAI-compatible—just point your request base_url to our endpoint and swap in our API key. No other code changes needed.

How does billing work?

You pay per token actually consumed, at official list price, with no hidden fees. Accounts are prepaid; balance and per-call details are visible in real time in the console.

How are reliability and data security ensured?

We use multi-provider hot standby and smart failover that reroutes automatically when a route degrades. Requests are only forwarded—your conversations are never stored—and keys and traffic are encrypted end to end.

Which models are supported? Are they updated?

Coverage spans OpenAI, Anthropic, Google, DeepSeek, xAI and other major providers—120+ models in total. New models are usually integrated the same or next day after launch.

Mulai hanya dalam beberapa menit

Credits on signup, no credit card required. Unlock the world’s top AI through one endpoint.

Buat akun gratis