profundo.ai

MIGRATION

Migrate from OpenRouter to Profundo

Both services expose an OpenAI-compatible API, so the migration is a base URL and a model ID change — not a rewrite.

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. Change the base URL and model ID

// Before (OpenRouter)
const client = new OpenAI({ baseURL: "https://openrouter.ai/api/v1", apiKey: "YOUR_OPENROUTER_KEY" });

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

// Then 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, then run your existing workload. Full model IDs and boundaries are in the API reference.

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.