302.AI
DetailsA 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.
Volcengine's LLM service platform, offering Doubao text, vision, and other model APIs; ideal for apps focused on Chinese scenarios, low cost, and high concurrency.
Volcengine's LLM service platform, offering Doubao text, vision, and other model APIs; ideal for apps focused on Chinese scenarios, low cost, and high concurrency.
Best for: For Chinese apps, content production, and high-concurrency low-cost inference scenarios.
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: "see the platform docs"
});
const response = await client.chat.completions.create({
model: "Doubao",
messages: [{ role: "user", content: "Test one call through an AI gateway." }]
});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.
A common API relay service among Chinese users; the site highlights aggregation of OpenAI, Claude, and Gemini plus multiple top-up methods.
An open-source LLM gateway/proxy layer that unifies many providers into an OpenAI-style interface; ideal for teams that want to self-host a relay and control their own keys and logs.
Risk
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.