Notification
Adaptive Multi-Key Load Balanced Gateway v1.3 Live

One Unified API For
Frontier AI Models

Standardized OpenAI-compatible endpoint with intelligent prompt-based semantic routing (model="auto"), dynamic latency tracking, and isolated client key quotas.

BASE_URL
https://testapi.enchant.id/v1
Smart Intent Router Active

Frontier Model Roster & Smart Router

Pass model="auto" for intelligent capability routing, or call individual models directly.

Recommended
Smart Router Online

auto

Automatically analyzes your prompt (Code, Vision, Video, Logic, Math) to dispatch the best model.

Smart Multimodal Text Vision Video Code
Dynamic Intent 1x - 2x Multiplier
DeepSeek Online

deepseek-v4-flash

Ultra-fast general intelligence, complex coding, and multi-step reasoning.

Text Only Code & Debug Fast Reasoning
Context: 64k 1x Multiplier
DeepSeek Online

deepseek-v4-flash-vision-exp

High-resolution multimodal visual understanding and OCR reasoning.

Vision / Image Input Text OCR
Context: 32k 1.25x Multiplier
Zhipu AI Online

glm-5.3-flash

Bilingual logic, creative writing, and rapid tool calling capabilities.

Text Only Multilingual Function Calling
Context: 128k 1x Multiplier
Alibaba Cloud Online

qwen3.8-flash

State-of-the-art multilingual knowledge, math, and code generation.

Text Only Math & Logic Code
Context: 64k 1x Multiplier
Hailuo AI Online

hy3

High-fidelity video prompt synthesis & multimodal generation.

Video Prompt AI Text Creative
Context: 32k 2x Multiplier

Enterprise Gateway Architecture

Built for high throughput, sub-agent swarms, and mission-critical production apps.

Adaptive Latency Balancer

Dynamic EMA latency scoring auto-prioritizes the fastest upstream keys and bypasses degraded slots in real time.

Multi-Agent & Swarms Ready

Native support for Hermes Agent, Cursor, Cline, AutoGen, and LangChain with custom rate limiting and isolated quotas.

Zero Data Logging & Privacy

Prompt payloads are proxied in-memory with pure streaming and never stored or used for model training.

Transparent API Plans

No credit card required. Free tier includes all 5 models and 500k tokens.

Developer Free

Perfect for building and testing AI agents.

$0 / forever
  • 500,000 Free Tokens on Signup
  • All 5 Frontier Models + Auto Router
  • 60 Requests / minute
Popular

Pro Builder

For scaling applications & production agents.

$9.99 / month
  • 20,000,000 Monthly Tokens
  • Priority Lowest-Latency Routing
  • 300 Requests / minute

Enterprise

Custom capacity & dedicated instances.

Custom
  • Unlimited Quota & Multi-Region
  • 99.99% Uptime SLA Guarantee
  • Dedicated Custom Channel Pool

Drop-in Integration in 30 Seconds

Replace base_url in your favorite OpenAI SDK or agent.

python-openai-example.py
from openai import OpenAI

# 1. Connect to Enchant AI Gateway
client = OpenAI(
    base_url="https://testapi.enchant.id/v1",
    api_key="sk-enchant-your-key-here"  # Get your key inside /console
)

# 2. Call with model="auto" for automatic intent routing
response = client.chat.completions.create(
    model="auto",
    messages=[{"role": "user", "content": "Write a fast Python web scraper."}]
)

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