DEVUP Docs
Back to Dashboard

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

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.

bash
npm install devupai
typescript
import 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.

Next steps