← Docs

Groq + Meridian

Meridian routes Groq as a passthrough provider. Your Groq API key unlocks LPU-accelerated inference through Meridian's unified gateway — no bridge required.

Status

Passthrough — live

Groq models are forwarded directly. No translation layer or compatibility shim sits between Meridian and the Groq API.

Supported models

  • llama-3.3-70b-versatile
  • llama-3.1-8b-instant
  • mixtral-8x7b-32768
  • gemma2-9b-it

Quick start

curl https://api.meridian.net/v1/chat/completions \
  -H "Authorization: Bearer $MERIDIAN_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "groq/llama-3.3-70b-versatile",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Prefix any Groq model with groq/. Your Meridian key authorizes the request; Groq billing flows through your linked account.