An open-source project for managing and distributing OpenAI-style interfaces; commonly used to self-host an API relay with channel management, quotas, and token grouping.
An open-source project for managing and distributing OpenAI-style interfaces; commonly used to self-host an API relay with channel management, quotas, and token grouping.
Best for: For webmasters, internal team gateways, and scenarios needing multi-channel key management and quota allocation.
Availability and latency
Current status
Self-hosted
Latency reference
Depends on your deployment
/models check
Self-hosted configuration
Last verified
2026-07-01
Status notes
An open-source channel-management project, suited to internal team or webmaster self-hosting.
Supported models
OpenAIClaudeGeminiDeepSeekQwenMoonshotEmbedding
Pricing and multipliers
Pricing mode
Open-source and self-hosted; you bear channel and deployment costs and can design your own plans and quotas.
Price tags
Low cost, Self-hosted
Free quota
No unified free quota; depends on the self-hoster's configuration.
Payment methods
Self-hosted
How to call the API
Usually you create an API key in the platform console, then replace the SDK's baseURL, model name, and auth details per the docs. Test streaming, function calling, error codes, and rate limits before launch.
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.AI_GATEWAY_API_KEY,
baseURL: "https://your-gateway.example.com/v1"
});
const response = await client.chat.completions.create({
model: "gpt-4.1-mini",
messages: [{ role: "user", content: "Test one call through an AI gateway." }]
});
A multi-model routing platform for developers; switch models by changing the base_url with the OpenAI SDK, ideal for teams comparing the quality and price of many models at once.
Models
OpenAI, Claude, Gemini, DeepSeek, Grok, Qwen and more
Payment
Credit card, Stripe, Free trial
Price
Billed per model and provider; some models offer free routing or free quota.
A tool and API aggregation platform covering text, image, video, and audio AI capabilities; ideal for individuals and small teams wanting one-stop access to many models.
Models
OpenAI, Claude, Gemini, DeepSeek, Grok, Qwen and more
Payment
Credit card, Free trial
Price
Billed per tool or model usage; the site lists separate prices per model.
This entry is marked as supporting the OpenAI-compatible format, but the exact base_url, model names, and parameters still follow the official docs.
Is One API ready for production?
Run a small-traffic load test, rate-limit test, and error-code test first, and confirm the billing rules; keep a backup provider for important workloads.
Risk
Risk notice
This site only organizes information about AI API relay services; it makes no guarantee about third-party platforms' stability, price, data security, or availability. Judge the risk yourself before use, and avoid uploading sensitive data, personal privacy, trade secrets, or core API keys to unknown platforms.