Unified access
Organize different models and capabilities behind one consistent entry point.
Connect AI models and capabilities through a consistent integration layer while keeping room to evolve.
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.IDREAME_API_KEY,
baseURL: process.env.IDREAME_BASE_URL,
});
const response = await client.chat.completions.create({
model: "your-model",
messages: [{ role: "user", content: "Hello" }],
});Keep model selection appropriately decoupled from product code so your stack can evolve.
Organize different models and capabilities behind one consistent entry point.
Choose capabilities by use case without locking the product into one path.
Use projects and credentials to keep team access boundaries clear.
Start with an experiment, then expand into a complete product workflow.
The API platform is for development teams building their own AI products. Begin with a minimal request, then expand the capabilities your workflow needs as product feedback arrives.
Current capabilities, parameters, and compatibility details are documented in the console and integration guides.
Test capability combinations quickly and focus on user value.
Create a stable capability layer for chat, content, knowledge, and automation.
Give engineering and operations a shared context through projects and one entry point.
Create a project in the console, or contact us to discuss your integration.