Getting Started
What is DEVUP AI?
An AI infrastructure platform providing Managed AI inference APIs, an OpenAI-compatible API, the DEVUP Native API, and scalable Cloud GPU and CPU compute. Build with our Developer SDKs and manage costs with usage-based billing in Algerian Dinar (DZD).
Capabilities
AI Models & Inference
Integrate leading models via our OpenAI-compatible API or Native API endpoints.
Multimodal Applications
Implement image, video, and text generation capabilities for your applications.
Search & Retrieval
Leverage state-of-the-art embedding models and search infrastructure.
Cloud GPU & CPU Compute
Provision scalable compute resources configured for AI workloads.
Why DEVUP AI
Unified AI infrastructure
A single platform for inference APIs and custom compute resources, reducing operational overhead.
OpenAI-compatible integration
Connect existing tools by updating your base URL to https://api.devupai.com/v1, API key, and model identifier.
Transparent billing in DZD
Usage-based pricing in Algerian Dinar. You are billed based on the specific workload type and compute usage.
Developer tooling
Built-in SDKs and operational visibility to help you monitor usage, performance, and API logs.
Quick example
Install the SDK and initialize the client.
npm install devupaiimport DevupAI from "devupai";
const client = new DevupAI({
apiKey: process.env.DEVUP_API_KEY!,
});
async function main() {
const response = await client.chat.completions.create({
model: "deepseek-ai/DeepSeek-V4-Pro",
messages: [{ role: "user", content: "Hello from Algeria!" }],
});
console.log(response.choices[0].message.content);
}
main();Generate an API key in the Dashboard.