profundo.ai

MIGRATION

Migrate from the OpenAI API to Profundo

Profundo is OpenAI-compatible, so your existing OpenAI SDK code keeps working. You change the base URL, the API key, and the model ID.

1. Create your account

Sign up, verify your email, and subscribe to a plan. No waitlist. See plans.

2. Get your API key

After subscribing, sign in and open the API key page in your dashboard. The key is revealed once — store it securely.

3. Point your client at Profundo

// Before (OpenAI SDK, default base URL)
const client = new OpenAI({ apiKey: "YOUR_OPENAI_KEY" });

// After (Profundo)
const client = new OpenAI({ baseURL: "https://api.profundoai.com/v1", apiKey: "YOUR_PROFUNDO_KEY" });

// Use a Profundo model ID, e.g. "gpt-6-astra" or "claude-fable-5-1"
const chat = await client.chat.completions.create({
  model: "gpt-6-astra",
  messages: [{ role: "user", content: "Hello" }],
});

4. Verify with a test request

Use the quickstart to confirm your first request. Supported request fields are in the API reference — tool calling, parallel tool calls, structured output, and streaming are supported where the model allows.

Pricing after migration

Profundo is flat-rate: Plus $10/mo (250 requests/day), Priority $40/mo (2,000 requests/day), Performance $100/mo (unlimited, subject to fair-use and service-protection controls). No token meter. See flat-rate vs token pricing for when this makes sense.