One-line migration
Migrate from Groq to Meridian
Meridian exposes an OpenAI-compatible API. If your app already talks to Groq, you're one base URL away from switching.
The only change
Before (Groq)
https://api.groq.com/openai/v1After (Meridian)
https://meridian.getnimbus.net/api/v1Drop-in examples
OpenAI Python SDK
from openai import OpenAI
client = OpenAI(
base_url="https://meridian.getnimbus.net/api/v1",
api_key="sk-nimbus-...",
)OpenAI Node.js SDK
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://meridian.getnimbus.net/api/v1",
apiKey: "sk-nimbus-...",
});Raw fetch / curl
curl https://meridian.getnimbus.net/api/v1/chat/completions \
-H "Authorization: Bearer sk-nimbus-..." \
-H "Content-Type: application/json" \
-d '{"model":"meridian-1","messages":[{"role":"user","content":"Hello"}]}'Compatibility
- ✓
/chat/completions— full OpenAI schema parity - ✓Streaming (SSE) — identical wire format
- ✓Function calling, JSON mode, system messages
- —Model name changes: use
meridian-1instead of Groq model IDs